Cor_Blimey
0
Q:

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);
1
res.sendFile(path.join(__dirname + '/index.html'));
5
app.get('/test', function(req, res) {
    res.sendFile('test.html', {root: __dirname })
});
1

New to Communities?

Join the community