express send html file
app.get('/test', function(req, res) {
res.sendFile('test.html', {root: __dirname })
});
express send html file
app.get('/test', function(req, res) {
res.sendFile('test.html', {root: __dirname })
});
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');
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us