-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
56 lines (47 loc) · 1.42 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import path from 'path';
import express from 'express';
import webpack from 'webpack';
import webpackMiddleware from 'webpack-dev-middleware';
import webpackHotMiddleware from 'webpack-hot-middleware';
import config from './webpack.config.js';
/* eslint-disable no-process-env */
const isDeveloping = process.env.NODE_ENV !== 'production',
port = isDeveloping ? 8080 : process.env.PORT,
app = express();
/* eslint-enable no-process-env */
if (isDeveloping) {
const compiler = webpack(config),
middleware = webpackMiddleware(compiler, {
publicPath: config.output.publicPath,
contentBase: 'build',
stats: {
colors: true,
hash: false,
timings: true,
chunks: false,
chunkModules: false,
modules: false
}
});
app.use(middleware);
app.use(webpackHotMiddleware(compiler));
/* eslint-disable no-sync */
app.get('*', (req, res) => {
res.write(middleware.fileSystem.readFileSync(path.join(__dirname, 'build/index.html')));
res.end();
});
/* eslint-enable no-sync*/
} else {
app.use(express.static(path.join(__dirname, '/build')));
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'build/index.html'));
});
}
/* eslint-disable no-console */
app.listen(port, 'localhost', (err) => {
if (err) {
console.log(err);
}
console.info('Open up http://localhost:%s/ in your browser.', port);
});
/* eslint-enable no-console */