Please be careful, this module is still in the Alpha stage.
Aggregates different Bitcoin exchanges api's into a convenient wrapper.
To use just import the module and provide your own callback to the ticker function for a given exchange.
//Example print the spot price from bitfinex
var xchange = require('xchange.js');
xchange.bitfinex.ticker(function(err, res){
if(err){return err;}
console.log(res);
});
To help make xchange.js better please
- install Node & NPM
- clone the repo
- install dependencies
git clone https://github.com/jxm262/xchange.js.git
cd xchange.js
npm install
To keep with the latest news on xchange.js development feel free to participate in the mailing list
npm test
MIT
Please refer to the LICENSE file for details.
We're currently in the process of figuring out what should be in the scope of this project and what tasks are being split up.