Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

202
Views
Read file line by line and return all to a variable in NodeJS

I need to read a file line by line and store the result in a variable, is that possible?

const fs = require('fs');

const allFileContents = fs.readFileSync('test.log', 'utf-8');
allFileContents.split(/\r?\n/).forEach(line =>  {
  console.log(`Line from file: ${line}`);
  return line; *<-- Returns undefined because it goes through all the lines of the file, but could everything be stored in a single variable to return the result?*
});

File example:

1 Word
2 Word
3 Word

Part of my complete code:

function readLogFile(){
        const allFileContents = fs.readFileSync('test.log', 'utf-8');
                allFileContents.split(/\r?\n/).forEach(line =>  {
                return line;
        });
}

var file = await readLogFile();
console.log(file); //Response: Undefined
sendEmailNotification(jobname, status, email, file)
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!