-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
40 lines (34 loc) · 1010 Bytes
/
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 path = require('path');
const express = require('express');
const webpack = require('webpack');
const cookieParser = require('cookie-parser');
const bodyParser = require('body-parser');
const webpackMiddleware = require('webpack-dev-middleware');
const port = process.env.PORT || 3000;
const routers = require('./routes/index');
const config = require('./webpack.config');
const app = express();
const compiler = webpack(config);
const middleware = webpackMiddleware(compiler, {
publicPath: config.output.publicPath,
stats: {
colors: true,
hash: false,
timings: true,
chunks: false,
chunkModules: false,
modules: false
}
});
app.set('view engine', 'pug');
app.use('/public', express.static(path.join(__dirname, 'public')))
app.use(middleware);
app.use(cookieParser());
app.use(bodyParser.json());
app.use('/', routers);
app.listen(port, 'localhost', err => {
if (err) {
console.log(err);
}
console.info(`==> 🌎 Listening on http://localhost:${port}/`);
});