Answers for "node js send html file in response without express"

9

send html file 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
-1

express send html from string

// Express.JS: Send HTML from string
res.send(`
  <h1>Welcome</h1>
  <h2>Scroll to learn more</h2>
`);
Posted by: Guest on March-30-2022

Code answers related to "node js send html file in response without express"

Browse Popular Code Answers by Language