Initialize the SDKAfter installing, initialize the SDK#Javascript sdk.init({ appId: 'yourAppId', appSecret: 'yourAppSecret', basePath: 'https://api.symbl.ai' }) .then(() => console.log('SDK Initialized.')) .catch(err => console.error('Error in initialization.', err));CopyAfter getting your appId and appSecret, use the command below to install the SDK and add it to your npm project's package.json.$ npm install --save symbl-nodeCopyReference the SDK in either the ES5 or ES6 way.The ES5 way#Javascript var sdk = require('symbl-node').sdk;CopyThe ES6 way#Javascript import { sdk } from 'symbl-node';Copy