New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@conio/web-sdk

Package Overview
Dependencies
Maintainers
0
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@conio/web-sdk

conio SDK for web

  • 3.2.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-54.55%
Maintainers
0
Weekly downloads
 
Created
Source

@conio/web-sdk npm

This is the official Conio web sdk, designed to work on browser. Install this deps and use with some popular module bundler like webpack, parcel or rollup. The sdk help you to manage authentication flow, tokens and provide an easy way to interact with conio api.

Installation & Setup

npm i @conio/web-sdk or yarn add @conio/web-sdk

Requirements

  • node >= 20
  • yarn 1.x | npm >= 10.2.3

Usage

Create conio object:

import { Conio, ConioConfiguration } from '@conio/web-sdk'

const baseUrl = "https://api.example.endpoint"
const bitcoinNetwork = "TESTNET" // or "MAINNET"
const sdkScope = "B2C" // or "B2B"
const conio = new Conio({ baseUrl, sdkScope })

Helpers

conio object provides some interfaces:

...
const conio = new Conio(conf)
const { userService, walletService, exchangeService } = conio
  • userService provide login() and getLegalAcceptances() and signUp()
  • walletService provide activityList()
  • tradingPriceService provide historicalPrices(), cryptoCurrenciesMetadata()

Development

We develop the library using jest with node as engine. To add new feature we create new test-case and develop the feature until the test become green (Yes is TDD approch). The development should use conventional commit. The process to release a new version can start with npm run release witch follow release-it flow and generate/edits CHANGELOG.md

  • npm run build – bundle the library using microbundle. Follow the instruction of microbundle js in its homepage)
  • npm run test-watch – develop a test in TDD approch
  • npm run generate-client - using open-api generator installed globally, this command generare the client part based on openapi.yaml. This command is necessary to start development.
  • npm run release - it run step-by-step release-it flow. Use right bumb proposed version.

Schema

Schema can be fetched at https://magellanov2.conio.com/_openapi or prod equivalent

FAQs

Package last updated on 14 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc