-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
53 lines (49 loc) · 1.34 KB
/
index.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
// start webpack
const path = require('path');
const express = require('express');
const webpack = require('webpack');
const webpackMiddleware = require('webpack-dev-middleware');
const webpackHotMiddleware = require('webpack-hot-middleware');
const config = require('./webpack.config.js');
// define node_env
config.plugins = [
new webpack.DefinePlugin({
'process.env': {NODE_ENV: JSON.stringify(process.env.NODE_ENV)}
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
];
// override entry for hotload
config.entry = [
'webpack-hot-middleware/client',
config.entry,
];
// returns a Compiler instance
const compiler = webpack(config);
// create express
const app = express();
app.use(express.static(__dirname));
app.use(webpackMiddleware(compiler, {
publicPath: config.output.publicPath,
contentBase: 'src',
stats: {
colors: true,
hash: false,
timings: true,
chunks: false,
chunkModules: false,
modules: false,
},
}));
app.use(webpackHotMiddleware(compiler));
// serve index
app.get('*', function response(req, res) {
res.sendFile(path.join(__dirname, 'index.html'));
});
// start server
app.listen(3000, 'localhost', function onStart(err) {
if (err) {
console.log(err);
}
console.info('==> Listening on port 3000');
});