
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
merge-sort-stream
Advanced tools
Merge sort two input streams to one sorted stream.
npm install merge-sort-stream
If you do not want to load all data into memory before doing the sort and the two input streams already are sorted then this module might help you.
Precondition, the two input streams should be readable with objectMode set to true and sorted regarding to the compare function.
var streamArray = require('stream-array');
var concat = require('concat-stream');
var mergeSortStream = require('merge-sort-stream');
function compare(a, b) { return b - a; }
var sortedA = streamArray([1,3,5,6,7]);
var sortedB = streamArray([2,3,4]);
var sorted = mergeSortStream(sortedA, sortedB, compare);
sorted.pipe(concat({encoding: 'object'}, function(array){
console.log(array);
}));
// output to console will be [ 1, 2, 3, 3, 4, 5, 6, 7 ]
If you have a streams of objects/points that have to be sorted regarding to the euclidean distance.
function euclidean(a, b) { return Math.sqrt(b.x*b.x+b.y*b.y) - Math.sqrt(a.x*a.x+a.y*a.y); }
var sortedA = streamArray([{x: 1, y: 1}, {x: 3, y: 3}]);
var sortedB = streamArray([{x: 4, y: 1}, {x: 5, y: 1}]);
var sorted = mergeSortStream(sortedA, sortedB, euclidean);
sorted.pipe(concat({encoding: 'object'}, function(array){
console.log(array);
}));
// output to console will be [ { x: 1, y: 1 }, { x: 4, y: 1 }, { x: 3, y: 3 }, { x: 5, y: 1 } ]
If you are going to sort objects only based on a property, you should consider to use the well proven module sorted-union-stream.
FAQs
Merge sort two input streams to one sorted stream
The npm package merge-sort-stream receives a total of 194 weekly downloads. As such, merge-sort-stream popularity was classified as not popular.
We found that merge-sort-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers collaborating on the project.
Did you know?

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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.