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

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

⚠ Breaking Changes: ⚠

🔧 Singleton VS New Object: (Thanks usama33!)
The API is now instantiated like this:

const binance = new Binance().options({
	APIKEY: "",
	APISECRET: "",
	useServerTime: true
});

or this:

const Binance = require('node-binance-api');
const binance = new Binance().options("options.json");

🔧 default recvWindow changed to 5000 as recommended by Binance

🔧 lastEventUpdateTime added to the response of depthCache callback, as third parameter. Thanks yanislk!

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

NewReleases is sending notifications on new releases.