return html express code example
Example 1: express sendfile html
var express = require('express');
var app = express();
var path = require('path');
app.get('/', function(req, res) {
res.sendFile(path.join(__dirname + '/index.html'));
});
app.listen(8080);
Example 2: send html file express
res.sendFile(path.join(__dirname + '/index.html'));
Example 3: render html in node js
render html in node js
-----------------------------
app.use(express.static('./'));
app.get('/', function(req, res) {
res.render('index.html');
});