res.sendFile(path.join(__dirname + '/index.html'));
//res.sendFile(path [, options] [, fn])
app.get('/test', function(req, res) {
res.sendFile('test.html')
});
app.get('/test', function(req, res) {
res.sendFile('test.html', {root: __dirname })
});
// Express.JS: Send HTML from string
res.send(`
<h1>Welcome</h1>
<h2>Scroll to learn more</h2>
`);