fs.readFile('filename', function read(err, data) { if (err) { throw err; } var content = data; console.log(content); }); code example
Example: fs readfile not working
const content = fs.readFileSync('./Index.html', 'utf8');
console.log(content);
const content = fs.readFileSync('./Index.html', 'utf8');
console.log(content);