This content originally appeared on DEV Community and was authored by Rajesh Kumar Yadav
Create a new file as app.js and paste below code -
app.js
const readline = require('readline');
const fs = require('fs');
var file = 'path.to.file';
var linesCount = 0;
var rl = readline.createInterface({
input: fs.createReadStream(file),
output: process.stdout,
terminal: false
});
rl.on('line', function (line) {
linesCount++; // on each linebreak, add +1 to 'linesCount'
});
rl.on('close', function () {
console.log(linesCount); // print the result when the 'close' event is called
});
Run below command -
node app.js
You will get the line count of text file.
With all that being said, I highly recommend you keep learning!
Thank you for reading this article. Please feel free to connect with me on LinkedIn and Twitter.
This content originally appeared on DEV Community and was authored by Rajesh Kumar Yadav
Rajesh Kumar Yadav | Sciencx (2021-05-20T04:19:29+00:00) Node.js : Determining the line count of a text file. Retrieved from https://www.scien.cx/2021/05/20/node-js-determining-the-line-count-of-a-text-file/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.
