Как мы можем помочь?
< Все темы
Печать

Построчное чтение файл

npm install line-by-line

const LineByLineReader = require('line-by-line');
const lr = new LineByLineReader('file.txt');
lr.on('error', (err) => {
    console.log(err);
});
lr.on('line', (line) => {
    console.log(line);
});
lr.on('end', () => {
    console.log('end');
});
Оглавление