0.1.0 • Published 10 years ago

stream-histogram v0.1.0

Weekly downloads
3
License
ISC
Repository
github
Last release
10 years ago

stream-histogram

A stream that computes a histogram of input values.

install

npm install stream-histogram

example

var stream = histo();
stream.write(5);
stream.write(2);
stream.write(8);
stream.write(2);
stream.on('data', function(data) {
    // data is a stream of
    // { key: input, value: count } objects
});
stream.end();