-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
47 lines (41 loc) · 1.35 KB
/
main.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
var express = require('express'),
path = require('path');
var freebirdApp = require('./app/server'),
isDeveloping = process.env.NODE_ENV !== 'production',
port = 3000, // isDeveloping ? 3000 : process.env.PORT
app = express();
if (isDeveloping) {
var config = require('./webpack.config'),
compiler = require('webpack')(config),
middleware = require('webpack-dev-middleware')(compiler, {
publicPath: config.output.publicPath,
contentBase: 'src',
stats: {
colors: true,
hash: false,
timings: true,
chunks: false,
chunkModules: false,
modules: false
}
});
app.use(middleware);
app.use(require('webpack-hot-middleware')(compiler));
app.get('*', function response(req, res) {
res.write(middleware.fileSystem.readFileSync(path.join(__dirname, 'build/index.html')));
res.end();
});
} else {
app.use(express.static(__dirname + '/build'));
app.get('*', function response(req, res) {
res.sendFile(path.join(__dirname, 'build/index.html'));
});
}
app.listen(port, '0.0.0.0', function onStart(err) {
if (err) {
console.log(err);
}
console.info('==> Listening on port %s.', port);
console.info('==> Open up http://0.0.0.0:%s/ in your browser.', port);
freebirdApp();
});