Skip to content

Getting Started

Terminal window
npm install @chanomhub/sdk
  1. Install the SDK using one of the methods above
  2. Create a config file
  3. Start using the SDK
import { ChanomHub } from '@chanomhub/sdk';
const client = new ChanomHub({
apiKey: 'your-api-key',
});
// Start using
const result = await client.doSomething();
console.log(result);