Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 252 Bytes

File metadata and controls

10 lines (9 loc) · 252 Bytes

readfilebyline

Read file line by line for node js

    var Rl = require('readfilebyline'),
        rl = new Rl('filename');
    rl.on('data', function (linedata) { // do something });
    rl.on('end', function () { // end });