A Javascript SDK to interact with The Execution Machine (EXM)
EXM can be used through a JS SDK in order to perform operations with the platform. To install the SDK.
$ npm i @execution-machine/sdk
After installing the npm package as described above. You can initialize EXM by doing the following
// import { Exm } from '@execution-machine/sdk'
const { Exm } = require('@execution-machine/sdk');
const exmInstance = new Exm({ token: 'MY_EXM_TOKEN' });
Documentation for SDK is available online. Please Click here for more information.