Answers for "express render static html"

1

express send html file

app.get('/test', function(req, res) {
    res.sendFile('test.html', {root: __dirname })
});
Posted by: Guest on July-24-2020
-1

render html in node js

render html in node js
-----------------------------
//server.js & index.html keep in same dir
app.use(express.static('./'));

app.get('/', function(req, res) { 
    res.render('index.html');
});
Posted by: Guest on October-18-2020
1

app.use public

app.use(express.static('public'))
app.use(express.static('files'))
Posted by: Guest on April-02-2020

Browse Popular Code Answers by Language