A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

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

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

belongs to collection: Node.js programming Exercises

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)

How does node JS connect to MongoDB database?... >>
<< How do you iterate over the given array in node.js...