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);
});
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.
need an explanation for this answer? contact us directly to get an explanation for this answer