fishmonger
v0.1.3
Published
Crypto-currency Exchange Data Interface
Downloads
4
Maintainers
Readme
fishmonger
Use
Ticker data
Makes an HTTP request and returns current ticker data from vendor.
const fishmonger = require('fishmonger');
// Returns a promise
fishmonger.btce.getTicker()
.then( result => console.log(result) );
// Use in co / koa style
let result = yield fishmonger.bitfinex.getTicker();
console.log(result);
// Array of available vendors
fishmonger._list;
Available vendors
Release notes
v0.1.0
- Basic BTCUSD ticker functionality
Contributing
Please follow .eslintrc.yml
file as a guide.
Welcome any additions to vendor list.
Author
Daniel K O'Leary