Envie o arquivo HTML Express
res.sendFile(path.join(__dirname + '/index.html'));
Lucky Lapwing
res.sendFile(path.join(__dirname + '/index.html'));
app.get('/test', function(req, res) {
res.sendFile('test.html', {root: __dirname })
});
//res.sendFile(path [, options] [, fn])
app.get('/test', function(req, res) {
res.sendFile('test.html')
});