Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 20, 2021 04:19 am GMT

Node.js : Determining the line count of a text file

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.

Buy Me A Coffee

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.


Original Link: https://dev.to/rajeshkumaryadavdotcom/node-js-determining-the-line-count-of-a-text-file-195l

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To