github binance-exchange/node-binance-api v0.8.1
Stable Release

latest releases: v0.13.0, v0.10.1, v0.9.0...
5 years ago

(BREAKING) Improve Instantiation w/Multiple Instances: (Thanks bmino!!)
Creates separate instances of the internal objects.

When Using Singletons:
Allows internal objects such as depthCache to be shared between multiple require() calls

const binance = require('node-binance-api')().options({
  APIKEY: '<key>',
  APISECRET: '<secret>'
});

Instantiating Multiple Instances

const Binance = require('node-binance-api');

const instance1 = new Binance().options({
  // ...
});

const instance2 = new Binance().options({
  // ...
});

Don't miss a new node-binance-api release

NewReleases is sending notifications on new releases.