-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
34 lines (26 loc) · 727 Bytes
/
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
/* eslint strict: 0, no-console: 0 */
'use strict';
const path = require('path');
const express = require('express');
const webpack = require('webpack');
const config = require('./webpack.config.development');
const app = express();
const compiler = webpack(config);
const PORT = 3000;
app.use(require('webpack-dev-middleware')(compiler, {
publicPath: config.output.publicPath,
stats: {
colors: true
}
}));
app.use(require('webpack-hot-middleware')(compiler));
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'app', 'hot-dev-app.html'));
});
app.listen(PORT, 'localhost', err => {
if (err) {
console.log(err);
return;
}
console.log(`Listening at http://localhost:${PORT}`);
});