Uh oh!
There was an error while loading. Please reload this page.
forked from react-toolbox/react-toolbox
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
Latest commit
41 lines (34 loc) · 975 Bytes
/
Copy pathserver.js
File metadata and controls
41 lines (34 loc) · 975 Bytes
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
constpath=require('path');
constexpress=require('express');
constwebpack=require('webpack');
constinternalIp=require('internal-ip');
constconfig=require('./webpack/webpack.config.dev');
constapp=express();
constcompiler=webpack(config);
app.use(require('webpack-dev-middleware')(compiler,{
noInfo: true,
publicPath: config.output.publicPath,
stats: {
colors: true,
},
}));
app.use(require('webpack-hot-middleware')(compiler,{
path: '/__webpack_hmr',
heartbeat: 20000,
}));
app.get('*',(req,res)=>{
res.sendFile(path.join(__dirname,'./spec/index.html'));
});
constport=8080;
app.listen(port,(err)=>{
if(err){
console.log(err);
return;
}
internalIp.v4().then(ip=>{
console.log(' --------------------------------------');
console.log(` Local: http://0.0.0.0:${port}`);
console.log(` External: http://${ip}:${port}`);
console.log(' --------------------------------------');
})
});