In this cheatsheet the two modules are used, but basically es.concat and merge has a same functionality. merge-stream seems my favorite because of readability, like below.
var merge = require('merge-stream');
gulp.task('hello', function(){
return merge(stream1, stream2);
});
Here's some difference between these.
In this cheatsheet the two modules are used, but basically
es.concatandmergehas a same functionality.merge-streamseems my favorite because of readability, like below.Here's some difference between these.
through2mergethrough2