through2-linereader
v0.0.1
Published
Yet another line reader stream, uses through2
Downloads
108
Maintainers
Readme
through2-linereader
Yet another line reader stream, uses through2
Installation
npm install through2-linereader
or
npm install --save through2-linereader
Usage
var linereader = require('through2-linereader');
fs.createReadStream('helloWorld.log', 'utf8')
.pipe(linereader())
.on('data', function(line){
console.log('I found a line.', line);
})