Answers for "parse txt files with node"

3

node load string from file

var fs = require('fs');

fs.readFile('my-file.txt', 'utf8', function(err, data) {
    if (err) throw err;
    console.log(data);
});
Posted by: Guest on March-19-2020
1

get lines as list from file node js

const fs = require('fs');

fs.readFile('file.txt', function(err, data) {
    if(err) throw err;

    const arr = data.toString().replace(/\r\n/g,'\n').split('\n');

    for(let i of arr) {
        console.log(i);
    }
});
Posted by: Guest on November-06-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language