An open API service indexing awesome lists of open source software.

https://github.com/askmike/cryptsy-push

Cryptsy Push API wrapper for nodejs
https://github.com/askmike/cryptsy-push

Last synced: about 2 months ago
JSON representation

Cryptsy Push API wrapper for nodejs

Awesome Lists containing this project

README

          

# cryptsy-push

Nodejs Wrapper for the Cryptsy Pusher API.

## Howto

Install:

npm install cryptsy-push

Use:

var Cryptsy = require('cryptsy');

var cryptsy = new Cryptsy(1); // market to watch
cryptsy.on('trade', function(trade) {
console.log('new trade:', trade);
});

Checkout `cryptsy-push/example.js` for an example.