Answers for "noded js read txt file and search for string"

1

read txt file in node js

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-27-2021
0

search string in file node

fs.readFile(FILE_LOCATION, function (err, data) {
  if (err) throw err;
  if(data.includes('search string')){
   console.log(data)
  }
});
Posted by: Guest on April-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language