Answers for "express js how to send html file"

1

express send html file

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

Code answers related to "express js how to send html file"

Browse Popular Code Answers by Language