-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathserver.js
73 lines (63 loc) · 2.23 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
const url = require('url');
const express = require('express');
const app = express();
const webpack = require('webpack');
const webpackDevMiddleware = require('webpack-dev-middleware');
const webpackHotMiddleware = require('webpack-hot-middleware');
const proxy = require('http-proxy-middleware');
const webpackConfig = require('./webpack.base.js');
const config = require('../config/project');
const configWebpack = config.webpack;
const port = configWebpack.port;
const route = Array.isArray(configWebpack.route) ? configWebpack.route : [configWebpack.route];
const apiPort = configWebpack['api-port'];
const apiRoute = configWebpack['api-route'];
function addProtocal(urlString) {
if (urlString.indexOf('http:') || urlString.indexOf('https:')) {
return urlString;
}
return 'http:' + urlString;
}
let urlObject = url.parse(addProtocal(configWebpack.webserver));
for (let key in webpackConfig.entry) {
if (webpackConfig.entry.hasOwnProperty(key)) {
webpackConfig.entry[key].unshift(
`webpack-hot-middleware/client?reload=true&dynamicPublicPath=true&path=__webpack_hmr`
);
}
}
let compiler = webpack(webpackConfig);
app.use(
webpackDevMiddleware(compiler, {
noInfo: true,
stats: {
colors: true
},
publicPath: configWebpack.webserver
})
);
app.use(
webpackHotMiddleware(compiler, {
// 这里和上面的client配合,可以修正 webpack_hmr 的路径为项目路径的子路径,而不是直接成为 host 子路径(从publicPath开始,而不是根开始)
// https://github.com/glenjamin/webpack-hot-middleware/issues/24
path: `${urlObject.path}__webpack_hmr`
})
);
// 静态资源转发
route.forEach(rt => {
app.use(rt, proxy({
target: `http://127.0.0.1:${port}`,
pathRewrite: { [`^${rt}`]: '/' }
})); // sensitive_info_detect:[ignored]
});
// 后台转发
apiRoute.forEach(rt => {
app.use(rt, proxy({ target: `http://127.0.0.1:${apiPort}` })); // sensitive_info_detect:[ignored]
});
app.listen(port, function (err) {
if (err) {
console.error(err);
} else {
console.info('Listening on port %s. Open up http://localhost:%s/ in your browser.', port, port);
}
});