Answers for "node.js read text file line by line"

1

get lines as list from file node js

const fs = require('fs');

fs.readFile('file.txt', function(err, data) {
    if(err) throw err;

    const arr = data.toString().replace(/\r\n/g,'\n').split('\n');

    for(let i of arr) {
        console.log(i);
    }
});
Posted by: Guest on November-06-2020
0

node.js read text file line by line

const readline = require('readline');

const readInterface = readline.createInterface({
        input: fs.createReadStream('name.txt'),
        output: process.stdout,
        console: false
    });

 for await (const line of readInterface) {
        console.log(line);
    }
//or
readInterface.on('line', function(line) {
    console.log(line);
});
Posted by: Guest on November-16-2020
0

File line by line reader Node js

var lineReader = require('line-reader');

lineReader.eachLine('file.txt', function(line, last) {
  console.log(line);
  // do whatever you want with line...
  if(last){
    // or check if it's the last one
  }
});
Posted by: Guest on May-25-2021
0

File line by line reader Node js

lineReader.open('file.txt', function(reader) {
  if (reader.hasNextLine()) {
    reader.nextLine(function(line) {
      console.log(line);
    });
  }
});
Posted by: Guest on May-25-2021

Code answers related to "node.js read text file line by line"

Code answers related to "Javascript"

Browse Popular Code Answers by Language