flow-floor

0.0.0 • Public • Published

flow-floor

Transform stream factory to floor streamed numeric data values.

Installation

$ npm install flow-floor

API

To create a stream factory,

var floorStream = require( 'flow-floor' );

// Create a new factory:
var fStream = floorStream();

fStream.stream()

To create a new stream to floor streamed numeric values,

var stream = fStream.stream();

Usage

Methods are chainable.

floorStream()
	.stream()
	.pipe( /* writable stream */ );

Examples

var eventStream = require( 'event-stream' ),
	fStream = require( 'flow-floor' );

// Create some data...
var data = new Array( 1000 );
for ( var i = 0; i < data.length; i++ ) {
	data[ i ] = Math.random()-0.5;
}

// Create a readable stream:
var readStream = eventStream.readArray( data );

// Create a new stream:
var stream = fStream().stream();

// Pipe the data:
readStream.pipe( stream )
	.pipe( eventStream.map( function( d, clbk ) {
		clbk( null, d.toString()+'\n' );
	}))
	.pipe( process.stdout );

To run the example code from the top-level application directory,

$ node ./examples/index.js

Tests

Unit tests use the Mocha test framework with Chai assertions.

Assuming you have 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.

License

MIT license.


Copyright

Copyright © 2014. Athan Reines.

Package Sidebar

Install

npm i flow-floor

Weekly Downloads

0

Version

0.0.0

License

none

Last publish

Collaborators

  • kgryte