forked from olebedev/go-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 13
/
hot.proxy.js
39 lines (31 loc) · 1.04 KB
/
hot.proxy.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
var webpack = require('webpack');
var webpackDevMiddleware = require('webpack-dev-middleware');
var webpackHotMiddleware = require('webpack-hot-middleware');
var proxy = require('proxy-middleware');
var config = require('./webpack.config');
var port = +(process.env.PORT || 5000);
config.entry = {
bundle: [
'webpack-hot-middleware/client?http://localhost:' + port,
config.entry.bundle
]
};
config.plugins.push(
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
);
config.devtool = 'cheap-module-eval-source-map';
var app = new require('express')();
var compiler = webpack(config);
app.use(webpackDevMiddleware(compiler, { noInfo: true, publicPath: config.output.publicPath }));
app.use(webpackHotMiddleware(compiler));
app.use(proxy('http://localhost:' + port));
port++;
app.listen(port, function(error) {
if (error) {
console.error(error);
} else {
console.info('==> 🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.', port, port);
}
});