Answers for "express js response send html file with value"

9

how to send html file with express

res.sendFile(path.join(__dirname + '/index.html'));
Posted by: Guest on March-05-2020
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 response send html file with value"

Browse Popular Code Answers by Language