noria v1.1.2
Noria
DEPRECATED: This package is no longer maintained
A collection of utilities for working with Node.js streams.
Installation
Install via npm:
npm install noriaAPI
collect(encoding, objectMode, callback, options)
encodingString (optional) - alias foroptions.encoding.objectModeBoolean (optional) - alias foroptions.objectMode.callbackFunction - Called after all data has been collected. Takes onedataparameter.optionsObject (optional) - Options passed to the stream.
Returns a new Transform
stream that buffers all incoming data and then calls callback(data). Or, if
objectMode is true, data will be an array containing each object that has
passed through. If encoding is defined, data will be converted to a string
before it is passed to callback.
The options parameter is identical to that of Node's
Transform stream constructor.
The following will print the contents of a file to the console before writing it to a new location.
fs.createReadStream('liftoff-file.txt')
.pipe(noria.collect('utf8', function(data) {
console.log(data);
}))
.pipe(fs.createWriteStrem('landing-file.txt'));init(data, options)
data- The data to pass to the stream.optionsObject (optional) - Options to pass to the stream.
Returns a new
Readable
stream initialized with some arbitrary data. If data is an array, each
element in the array will be treated as a chunk of data. options.objectMode is
true by default. The options parameter is identical that of Node's
Readable stream constructor.
// Initializes with one chunk of type String.
noria.init('Colorless green ideas sleep furiously.');
// Initializes with three chunks of various types.
noria.init([42, 'than', {name: 'adams'}]);
// Initializes with one chunk of type Array.
noria.init([['the', 'universe']]);wrap(prefix, suffix, options)
prefixBuffer | String (optional) - Data to prepend to the beginning of the stream.suffixBuffer | String (optional) - Data to append to the end of the stream.optionsObject (optional) - Options to pass to the stream.
Returns a new Transform
stream that wraps the contents of a stream with an arbitrary prefix and suffix.
Either can be omitted by passing null or by leaving the argument undefined.
The options parameter is identical to that of Node's
Transform stream constructor.
const fs = require('fs');
fs.createReadStream('elfish-ge.txt')
// Contents: ' are the master programmers, and they '
.pipe(noria.wrap(
'The genes',
'are programming for their lives.'
)).pipe(process.stdout);
// Prints: 'The genes are the master programmers,
// and they are programming for their lives.'License
Copyright © 2015 Akim McMath. Licensed under the MIT License.