GitXplorerGitXplorer
j

node-ordered-merge-stream

public
7 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
5e19cd3dae8ffbdce4a74a147edb7f6b1c97f3ab

1.0.0

jjpettersson committed 9 years ago
Unverified
8ae3b25b60cc618962528ca1fd1d000e1021e885

Update README.md

jjpettersson committed 9 years ago
Unverified
4f07822ceacc40134f3a08f2c3cd6349db076f47

Merge pull request #1 from philipvonbargen/patch-1

committed 10 years ago
Unverified
6eceeea30c89382be942f72396d9179f3c05277e

Make example in README.md work as expected

tthisispvb committed 10 years ago
Unverified
643c6dadb05fd8dc502ea5c8a8f0b8fcdb90ec15

Added section about tests to README

jjpettersson committed 10 years ago
Unverified
a740decbc46e9a3194519ad3d4461394277e6ef1

Added MIT license

jjpettersson committed 10 years ago

README

The README file for this repository.

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');

  // Create a few stream objects
  var lets = through();
  var go = through();
  var to = through();
  var space = through();

  // Order them in an Array
  var streams = [lets,
                 go,
                 to,
                 space];

  // Set the streams in "flowing mode".
  lets.pause();
  go.pause();
  to.pause();
  space.pause();

  // Create a single stream out of the Array
  var mergedStream = orderedMergeStream(streams);

  var cache = [];

  mergedStream.on('data', function(data){
    cache.push(data);
  });

  // Write data to the streams in any order
  space.write('space!');
  space.end();
  go.write('go');
  go.end();
  to.write('to');
  lets.write('Lets');
  lets.end();
  to.end();


  // The resulting data will be received based on the Array order.
  mergedStream.on('end', function() {
    console.log(cache); // Will output: ["lets", "go", "to", "space!"]
  });

Tests

Run the tests for this project with: tape test/test.js