-
Notifications
You must be signed in to change notification settings - Fork 452
/
server.js
40 lines (33 loc) · 1.05 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const express = require('express');
const http = require('http');
const path = require('path');
const reload = require('reload');
const bodyParser = require('body-parser');
const logger = require('morgan');
const app = express();
app.set('port', process.env.PORT || 3000);
app.use(logger('dev'));
app.use(bodyParser.json()); // Parses json, multi-part (file), url-encoded
app.use('/public', express.static('public'));
app.use('/pages', express.static('pages'));
app.get('/*', function (req, res) {
res.sendFile(path.join(__dirname, 'index.html'));
});
const server = http.createServer(app);
// Reload code here
reload(app)
.then(function (reloadReturned) {
// reloadReturned is documented in the returns API in the README
// Reload started, start web server
server.listen(app.get('port'), function () {
console.log(
'Web server listening on port http://localhost:' + app.get('port')
);
});
})
.catch(function (err) {
console.error(
'Reload could not start, could not start server/sample app',
err
);
});