-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathserver.js
39 lines (33 loc) · 1.01 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
/*eslint-disable no-console */
const path = require('path');
const express = require('express');
const webpack = require('webpack');
const config = require('./webpack.config.dev');
const devMiddleware = require('webpack-dev-middleware');
const app = express();
const compiler = webpack(config);
const devMiddleWareInstance = devMiddleware(compiler, {
noInfo: true,
publicPath: config.output.publicPath
});
app.use(devMiddleWareInstance);
app.use(require('webpack-hot-middleware')(compiler));
app.get('*', function(req, res, next) {
const filename = path.join(compiler.outputPath, 'index.html');
devMiddleWareInstance.waitUntilValid(() => {
compiler.outputFileSystem.readFile(filename, function(err, result) {
if (err) {
return next(err);
}
res.set('content-type', 'text/html');
res.send(result);
res.end();
});
});
});
app.listen(3000, 'localhost', function(err) {
if (err) {
return console.log(err);
}
console.log('Listening at http://localhost:3000');
});