2018-10-20 20:32:02 +08:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const path = require('path');
|
|
|
|
const config = require('./webpack.config');
|
|
|
|
const webpack = require('webpack');
|
|
|
|
// const WebpackDevServer = require('webpack-dev-server');
|
|
|
|
const express = require('express');
|
|
|
|
const app = express();
|
|
|
|
|
|
|
|
const devMiddleware = require('webpack-dev-middleware');
|
|
|
|
const hotMiddleware = require('webpack-hot-middleware');
|
|
|
|
|
|
|
|
const { PORT } = process.env;
|
|
|
|
const port = PORT ? Number(PORT) : 3000;
|
|
|
|
|
2019-01-05 00:05:35 +08:00
|
|
|
config.entry.app.unshift('webpack-hot-middleware/client');
|
2018-10-20 20:32:02 +08:00
|
|
|
config.plugins.push(
|
|
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
|
|
// prints more readable module names in the browser console on HMR updates
|
2019-01-05 00:05:35 +08:00
|
|
|
new webpack.NamedModulesPlugin(),
|
|
|
|
new webpack.NoEmitOnErrorsPlugin()
|
2018-10-20 20:32:02 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
const compiler = webpack(config);
|
|
|
|
// webpack-dev-server config
|
|
|
|
const publicPath = config.output.publicPath;
|
|
|
|
const stats = {
|
|
|
|
colors: true,
|
2019-01-05 00:05:35 +08:00
|
|
|
version: false,
|
|
|
|
modulesSort: 'issuer',
|
|
|
|
assets: false,
|
2018-10-20 20:32:02 +08:00
|
|
|
cached: false,
|
|
|
|
cachedAssets: false,
|
|
|
|
chunks: false,
|
|
|
|
chunkModules: false
|
|
|
|
};
|
|
|
|
|
|
|
|
const options = { publicPath, stats };
|
|
|
|
|
|
|
|
app.use(devMiddleware(compiler, options));
|
|
|
|
app.use(hotMiddleware(compiler));
|
|
|
|
|
|
|
|
app.use('*', (req, res, next) => {
|
|
|
|
const filename = path.join(compiler.outputPath, 'index.html');
|
|
|
|
compiler.outputFileSystem.readFile(filename, (err, result) => {
|
|
|
|
if (err) return next(err);
|
|
|
|
|
|
|
|
res.set('content-type', 'text/html');
|
|
|
|
res.send(result);
|
|
|
|
res.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.listen(port, '0.0.0.0', () => {
|
|
|
|
console.log('\n>> Listening at http://0.0.0.0:' + port + '\n');
|
|
|
|
});
|