eccentrade-client
v1.0.28
Published
Universal Javascript bindings for the Eccentrade API.
Readme
eccentrade-node
Official JavaScript client for the Eccentrade API https://developer.eccentrade.com. Works on both server and client side.
Installation
npm install eccentrade-clientUsage
Require Eccentrade:
const Eccentrade = require('eccentrade-client');Create a client:
Using Personal Access Tokens
const client = new Eccentrade.Client({ token: 'my_token' });Using credentials (deprecated)
const client = new Eccentrade.Client({
appId: <appId>
email: <email>
password: <password>
});