Answers for "express send html file as response"

7

express sendfile html

var express = require('express');
var app = express();
var path = require('path');

// viewed at http://localhost:8080
app.get('/', function(req, res) {
    res.sendFile(path.join(__dirname + '/index.html'));
});

app.listen(8080);
Posted by: Guest on October-09-2020
7

send html file express

var express = require('express');
var app = express();
var path = require('path');

// viewed at http://localhost:8080
app.get('/', function(req, res) {
    res.sendFile(path.join(__dirname + '/index.html'));
});

app.listen(8080);
Posted by: Guest on March-05-2020

Code answers related to "express send html file as response"

Browse Popular Code Answers by Language