npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

streamworks

v0.1.4

Published

Run a nested collection of streams in pipe or merge configurations

Downloads

11

Readme

streamworks

streamworks logo

Build status

Combine merge and pipe streams into stream architectures that can bend packets to your will.

merge stream

merge stream diagram

A merge stream will duplicate the input across all members and merge the output from all members (based on combine-stream.

pipe stream

pipe stream diagram

A pipe stream will pass the output from each member as the input to the next (based on stream-combiner.

combo streams

combo stream diagram

Both types accepts streams in their list - you can combine merge and pipes with each other - it's stream inception!

installation

$ npm install streamworks

usage

There are 2 main methods:

  • merge
  • pipe

Create each type of stream by passing an array of either:

  • functions - these are turned into streams using through2
  • streams - these are used as is

example

var from = require('from');
var streamworks = require('streamworks');


// a merge is a stream that splits the input across each function and merges the output back into one stream
var mergestream = streamworks.merge([

	// order lots
	function(chunk, enc, callback){
		this.push(chunk + ':10')
		callback()
	},

	// order some
	function(chunk, enc, callback){
		this.push(chunk + ':2')
		callback()
	}
])


// a pipe is a stream that passes values through each function
var pipestream = streamworks.pipe([

	// filter anything that does not start with p
	function(chunk, enc, callback){
		if(chunk.toString().indexOf('p')!=0){
			this.push(chunk);
		}
		callback();
	},

	// uppercase to input
	function(chunk, enc, callback){

		this.push(chunk.toString().toUpperCase())
	}
])

// run some data through the merge stream (which will duplicate it) and then through the pipe stream (which will filter it)
from(['apple', 'pie', 'custard'])
	.pipe(mergestream)
	.pipe(pipestream)
	.pipe(process.stdout)

nested streams

Because streamworks streams are, umm, streams - you can create complex nested stream-structures:


var bigAssStream = streamworks.pipe([
  function(chunk, enc, callback){
    if(chunk!='world'){
      this.push(chunk);
    }
    callback();
  },

  streamworks.merge([
    function(chunk, enc, callback){
      this.push('A1:' + chunk);
      callback();
    },
    function(chunk, enc, callback){
      this.push('A2:' + chunk);
      callback();
    },
    function(chunk, enc, callback){
      this.push('A3:' + chunk);
      callback();
    }
  ]),

  streamworks.pipe([

    function(chunk, enc, callback){
      if(chunk.toString().indexOf('A2')!=0){
        this.push(chunk);
      }
      callback();
    },
    streamworks.merge([
      function(chunk, enc, callback){
        this.push('sub1:' + chunk);
        callback(); 
      },
      function(chunk, enc, callback){
        this.push('sub2:' + chunk);
        callback(); 
      }
    ]),
    function(chunk, enc, callback){
      if(chunk.toString().indexOf('sub2:A1:')!=0){
        this.push(chunk);
      }
      
      callback()
    },
  ])
])

var arr = [];

from(['hello','world','apple']).pipe(bigAssStream)
.on('data', function(chunk){
  arr.push(chunk.toString())
}).on('end', function(){
	console.dir(arr);
})

/*

sub1:A1:hello
sub1:A3:hello
sub2:A3:hello
sub1:A1:apple
sub1:A3:apple
sub2:A3:apple
	
*/

object streams

If you pass true or:

{
	objectMode:true
}

as the first argument to pipe or merge - the stream will be in object mode.

this means that the 'chunks' will be what you sent and not buffers/strings.

You can also use:

  • pipeObjects
  • mergeObjects

Which are shortcuts for:

  • pipe(true, [])
  • merge(true, [])

api

streamworks.pipe([objectMode], fns)

create a new readable/writable stream that will pipe each value through the array of streams/functions

streamworks.pipeObjects(fns)

shorthand for pipe(true, [])

streamworks.merge([objectMode], fns)

create a new readable/writable stream that will duplicate each value into each of the streams/functions and merge the results back into the output

streamworks.mergeObjects(fns)

shorthand for merge(true, [])

license

MIT