ordered-merge-stream
Merge multiple node streams into one and control the order of the emitted data.
Why?
This function is used in the lingon project. There we have a bunch of vfs.src() streams that we need to concatenate in a specific order.
Installing
npm install ordered-merge-stream
API
Function: orderedMergeStream(streams)
Arguments:
streams: An Array of node stream objects. The input stream objects need to be in the "flowing" mode, so you might have to call stream.pause()
before sending them in.
Returns:
A stream object that will emitt data from all streams. The data will be emitted in the order the streams appeared in the array that was passed in. Each stream has to send the end
event in order for the next stream to start emitting data.
Example Usage
var through = require('through');
var orderedMergeStream = require('ordered-merge-stream');
var lets = through();
var go = through();
var to = through();
var space = through();
var streams = [lets,
go,
to,
space];
lets.pause();
go.pause();
to.pause();
space.pause();
var mergedStream = orderedMergeStream(streams);
var cache = [];
mergedStream.on('data', function(data){
cache.push(data);
});
space.write('space!');
space.end();
go.write('go');
go.end();
to.write('to');
lets.write('Lets');
lets.end();
to.end();
mergedStream.on('end', function() {
console.log(cache);
});
Tests
Run the tests for this project with: tape test/test.js