Como obter uma linha específica de um arquivo no NodeJS
lineReader.eachLine('path/to/file', function(line) {
console.log(line);
if (line.includes('STOP') {
return false; // stop reading
}
});
Outstanding Oystercatcher