Open In App

How to return an array of lines from a file in node.js ?

In this article, we will return an array of lines from a specified file using node.js. The fs module is used to deal with the file system in node.js and to read file data we use fs.readFileSync( ) or fs.readFile( ) methods. Here we will use the readFileSync method to read the file, and we use the steps below to return the lines of the file in an array:

Below is the Example in which we are implementing the above steps:






// Requiring the fs module
const fs = require("fs")
 
// Creating a function which takes a file as input
const readFileLines = filename =>
  fs
    .readFileSync(filename)
    .toString('UTF8')
    .split('\n');
 
 
// Driver code
let arr = readFileLines('gfg.txt');
 
// Print the array
console.log(arr);

Text file: The gfg.txt file.

Geeksforgeeks
A computer Science Portal for Geeks

Run the code using the command:



node index.js

Output:

[
  'Geeksforgeeks',
  'A computer Science Portal for Geeks'
]
Article Tags :