This package has been deprecated

Author message:

Just crazy archaism that never worked. Sorry.

stream-graph

1.0.0 • Public • Published

StreamGraph is EventedGraph, where nodes are streams and edges are pipes. Main purpose of stream-graph is to manage connection scheme of streams: parse, save, load, generate etc.

Usage

npm install stream-graph

var Graph = require('stream-graph');
var Browserify = require('browserify');
 
var browserify = new Browserify();
browserify.add('./main.js');
 
//create graph structure
var graph = new Graph();
graph.add(browserify);
graph.add(process.stdout);
graph.connect(browserify, process.stdout);
 
//go
browserify.bundle();

Related

evented-graph — graph emitting mutator events, ancestor of stream-graph.
audio-graph — graph of connected pcm-streams. Descendant of this graph.

/stream-graph/

    Package Sidebar

    Install

    npm i stream-graph

    Weekly Downloads

    2

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • dfcreative