@or-sdk/ccp
v10.11.0
Published
``` $ npm i @or-sdk/ccp ```
Downloads
1,427
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'
});