Nodejs: Enviar arquivo html para mostrar no navegador
// Send HTML File to Browser
fs.readFile(path, { encoding: 'utf-8' }, (err, data) => {
if (err) {
console.log(err);
res.end();
return
}
res.write(data);
res.end();
});
Sore Sardine