How to read local text file and print the text in console with Node.js

1 Answer

0 votes
const fs = require('fs')

filename = "info.txt";
fs.readFile(filename, 'utf8', function(err, data) {
  if (err) throw err;
  console.log(data)
});
  
  
 
  
/*
run:
  
See the text from info.txt file in the console output
  
*/

 



answered Feb 28, 2020 by avibootz
edited Mar 1, 2020 by avibootz

Related questions

1 answer 255 views
1 answer 188 views
1 answer 170 views
1 answer 216 views
1 answer 196 views
196 views asked Mar 9, 2020 by avibootz
...