FS readfile não está funcionando
const content = fs.readFileSync('./Index.html', 'utf8');
console.log(content);
Anxious Anaconda
const content = fs.readFileSync('./Index.html', 'utf8');
console.log(content);
fs.readFile('filename', function read(err, data) {
if (err) {
throw err;
}
var content = data;
console.log(content);
});