data_stream
v0.0.1
Published
powerful data manipulation with node.js streams.
Downloads
3
Readme
data-stream
powerful data manipulation with node.js streams.
Note: Install with 'npm install data*_*stream because data-stream was already taken.
Usage
To start using, install it into your project, create a new data-stream, apply your transforms, then treat as a regular stream:
var data = require('../');
var stream = data()
.sum()
.debounce(100)
.forEach(console.log);
setInterval(function(){ stream.write(1) }, 1);
See examples/sum.js.
API documentation
For the full API specification, please see doc/index.md.
License
Licensed under GPL-3.0.