New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ordered-merge-stream

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ordered-merge-stream

Merge an array of streams and emit data according to the array order

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
90
increased by55.17%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

FAQs

Package last updated on 04 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc