0.1.4 • Published 10 years ago

read-lines v0.1.4

Weekly downloads
4
License
-
Repository
-
Last release
10 years ago

Build Status Coverage Status

read-lines

Read big files, line by line.

npm install read-lines

##Usage The module emits the first line and then stops until you call the
next() callback, in this way you can make async stuff with your line
and call next() when your are done.

var ReadLines = require('read-lines');
var file = new ReadLines('/path/to/my/file');

file.on('open', function() {
  //call read for start reading the first line
  file.read(); 
});

file.on('line', function(line, next) {
  console.log(line);
  //You call next to get the next line
  next();
});

file.on('error', function(err) {
  // handle here the errors
});
0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago