node-ico-watchlist-api
v1.0.5
Published
Nodejs wrapper for icowatchlist.com
Downloads
1
Maintainers
Readme
node-ico-watchlist-api
Nodejs wrapper for icowatchlist.com
API Implementation
Check examples folder for more info
const icowatchlistAPI = require('node-ico-watchlist-api'); // use node-ico-watchlist-api in production
const ico = new icowatchlistAPI()
ico.getFinished(function(resp,data){
if(resp){
console.log(JSON.stringify(data))
} else {
console.log('\nError');
}
})
All callbacks have the same structure
/*
* @return {Boolean} response: result of the call.
* @return {String} json: data returned from icowatchlist.com API in JSON format, if the response is false json is an empty string
*/
callback(response,json);
Callbacks:
icoapi.getAll()
icoapi.getLive()
icoapi.getUpcoming()
icoapi.getFinished()