Transform stream factory to sink a specified number of streamed data values and then stream new data values as they arrive.
$ npm install flow-sink-and-stream
To create a stream factory,
var sasStream = require( 'flow-sink-and-stream' );
// Create a new factory:
var tStream = sasStream();
This method is a setter/getter. If no numValues
is provided, returns the numValues
to initially sink; default is 0
. To set the numValues
,
tStream.numValues( 10 );
To create a new sink-and-stream stream,
var stream = tStream.stream();
Methods are chainable.
sasStream()
.numValues( 10 )
.stream()
.pipe( /* writable stream */ );
var eventStream = require( 'event-stream' ),
tStream = require( 'flow-sink-and-stream' );
// Create some data...
var data = new Array( 20 );
for ( var i = 0; i < data.length; i++ ) {
data[ i ] = Math.random();
}
// Create a readable stream:
var readStream = eventStream.readArray( data );
// Create a new sink-and-stream stream:
var stream = tStream()
.numValues( 10 )
.stream();
// Pipe the data:
readStream.pipe( stream )
.pipe( eventStream.map( function( d, clbk ){
if ( Array.isArray( d ) ) {
clbk( null, JSON.stringify( d )+'\n' );
return;
}
clbk( null, d.toString()+'\n' );
}))
.pipe( process.stdout );
To run the example code from the top-level application directory,
$ node ./examples/index.js
Unit tests use the Mocha test framework with Chai assertions.
Assuming you have globally installed Mocha, execute the following command in the top-level application directory to run the tests:
$ mocha
All new feature development should have corresponding unit tests to validate correct functionality.
Copyright © 2014. Athan Reines.