/live-binance

Basic tool to retrieve data from Binance Websocket and push into MongoDB

Primary LanguageJavaScriptMIT LicenseMIT

How to use

###This application requires NodeJS and MongoDB

It's a simple tool to retrieve data from Binance Websocket. Official documentation is here!

Install required packages via npm

npm install mongodb
npm install node-binance-api

Set MongoDB connection at the top of index.js file before you run it

var url = "mongodb://localhost:27017/";
var DB  = "Place Your DB Name Here";

After you get ready to run your JS file run this command!

node index.js

Bob is your uncle!