0.1.1 • Published 8 years ago

bitstamp-ws v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

bitstamp-ws

Nodejs Wrapper for the Bitstamp WebSocket API.

Howto

Install:

npm install bitstamp-ws

Use:

var Bitstamp = require('bitstamp-ws');

var ws = new Bitstamp();
ws.on('trade', function(trade) {
  console.log('new trade:', trade);
});
ws.on('data', function(data) {
  console.log('new order book event:', data);
});

And check out the example in example.js for full configuration and all available channels.

Reference

Bitstamp WebSocket API documentation: https://www.bitstamp.net/websocket/

0.1.1

8 years ago

0.1.0

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

9 years ago

0.0.2

10 years ago

0.0.1

10 years ago