Answers for "express load html file from a folder"

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

app.use public

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

Code answers related to "express load html file from a folder"

Browse Popular Code Answers by Language