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
- Host: GitHub
- URL: https://github.com/askmike/cryptsy-push
- Owner: askmike
- License: mit
- Created: 2014-06-14T22:14:50.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-14T22:49:44.000Z (about 12 years ago)
- Last Synced: 2025-12-09T22:21:19.843Z (6 months ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.