Skip to content

exmbuild/exm-js-sdk

Repository files navigation

3em Logo

Execution Machine JS SDK

A Javascript SDK to interact with The Execution Machine (EXM)

General

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' });

Docs

Documentation for SDK is available online. Please Click here for more information.