Skip to content

karimsa/data-stream

Repository files navigation

data-stream travis-ci build status

powerful data manipulation with node.js streams.

DISCLAIMER: This was a project I started a while ago but never got around to finishing but decided to upload it anyways in case anyone else is interested in it. Enjoy!

Note: Install with 'npm install data_stream because data-stream was already taken.

NPM

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.

About

powerful data processing with node.js streams

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published