2.0.5 • Published 2 years ago

@decipherindustries/kinetic-config-parser v2.0.5

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
2 years ago

MyinT SDK

A software development kit (SDK) for building client applications with the MyinT API. Abstracts away the unpleasantries of dealing with API connectivity.

Installation

For now, installation is done from Git. requires access to the Git repository.

$ npm install [--save] decipherindustries/myint-sdk

Usage

// Import the client
import Client from 'myint-sdk'

// Instantiate a sdk
const sdk = new Client('https://myint.decipher.digital')

// Do things with the REST API
const clues = await sdk.clues.list()
const solutions = await sdk.get('/api/v1/solution')
const createClueResult = await sdk.clues.create({ ... clue data ... })

// Listen to events
sdk.on('connected', () => {
  // connected to server
})

sdk.on('disconnected', () => {
  // disconnected from server
})

sdk.on('notification', () => {
  // server notification
})
2.0.5

2 years ago

2.0.4

3 years ago

2.0.3

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago