Q:

How to read a file line by line using node.js ?

0

How to read a file line by line using node.js 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Solution

Readline Module in Node.js allows the reading of input stream line by line. The given node.js code open the file 'demo.html' and return the content line by line.

var readline = require('readline');
var fs = require('fs');

var file= readline.createInterface({
  input: fs.createReadStream('demo.html')
});

var lineno = 0;
file.on('line', function (line) {
  lineno++;
  console.log('Line number ' + lineno + ': ' + line);
});

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now