Comment obtenir une ligne particulière à partir d'un fichier dans Nodejs
lineReader.eachLine('path/to/file', function(line) {
console.log(line);
if (line.includes('STOP') {
return false; // stop reading
}
});
Outstanding Oystercatcher