stream-splitter-transform

0.0.4 • Public • Published

stream-splitter-transform

A Transform objectMode stream to break a stream along a separator

new StreamSplitter([separator, [options]])

A new stream.Transform that splits the input stream along separator and emits each split chunk in objectMode.

separator defaults to \n

options is passed along to the Transform constructor. decodeStrings and objectMode are always set to false and true, respectively

Example: Print a script out line-by-line

var StreamSplitter = require('stream-splitter-transform');
var fs = require('fs');

var splitter = new StreamSplitter();
function readSplitter() {
    var line = splitter.read();
    if (line !== null) {
        console.log("Got line: " + line);
        line = splitter.read();
    }
}
splitter.on('readable', readSplitter);

var thisScript = fs.createReadStream(process.argv[1]);
thisScript.pipe(splitter);

readSplitter();

Readme

Keywords

none

Package Sidebar

Install

npm i stream-splitter-transform

Weekly Downloads

0

Version

0.0.4

License

none

Last publish

Collaborators

  • shlevy