@or-sdk/ccp
v10.14.1
Published
``` $ npm i @or-sdk/ccp ```
Downloads
3,641
Readme
Installation:
$ npm i @or-sdk/ccpUsage:
import { CCP } from '@or-sdk/ccp'
// with direct api url
const ccp = new CCP({
token: 'my-account-token-string',
ccpApiUrl: 'http://example.account-settings/endpoint'
});
// with service discovery (slower)
const ccp = new CCP({
token: 'my-account-token-string',
discoveryUrl: 'http://example.account-settings/endpoint'
});