NodeJS: Kirim file html untuk ditampilkan di browser

// 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