Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
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 */