0.1.3 • Published 8 years ago

batch-stream v0.1.3

Weekly downloads
4,287
License
MIT
Repository
github
Last release
8 years ago

Batch Stream

Transform stream which batches a bunch of input data into groups of specified size. Will emit arrays, so that you can deal with pieces of input asynchronously.

Usage

var batch = new BatchStream({ size : 5 });

stream
  .pipe(batch)
  .pipe(new ArrayStream()); // deals with array input from pipe.