stream-line-dispatch

0.1.1 • Public • Published

Stream Line Dispatch

A way to read lines from a stream and dispatch events based off of pattern matching of those strings. Stream Line Dispatch is a stream transform, that does not transform data but analyses the data from a stream and allow for some simple event binding when data comes throught the pipe.

Install

npm install stream-line-dispatch

Usage

Example usage.

var 
spawn = require( 'child_process' ).spawn,
sld = require( 'stream-line-dispatch' ),
ssh = spawn( 'ssh', [ '-i', '~/.ssh/bar', '-tt', 'root@foo.com' ] ),
transform = sld( {
    output: process.stdout, // optional writable stream
    sendOutput: true // flag if to write to stream
});  
 
transform.on( '#$', function() { // terminal char aka ready for input
    ssh.stdin.write( 'exit \n' );
});
 
ssh.stdout.pipe( transform );

/stream-line-dispatch/

    Package Sidebar

    Install

    npm i stream-line-dispatch

    Weekly Downloads

    2

    Version

    0.1.1

    License

    MIT

    Last publish

    Collaborators

    • ~jcblw