0.0.1 • Published 9 years ago

through2-linereader v0.0.1

Weekly downloads
87
License
MIT
Repository
github
Last release
9 years ago

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);
  })