Skip to content

Instantly share code, notes, and snippets.

@hackingbeauty
Last active September 6, 2017 18:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hackingbeauty/3654f5dae04abf9aa480d2823cc5e184 to your computer and use it in GitHub Desktop.
Save hackingbeauty/3654f5dae04abf9aa480d2823cc5e184 to your computer and use it in GitHub Desktop.
const http = require('http');
const express = require('express');
const app = express();
const isDevMode = process.env.NODE_ENV === 'development';
const history = require('connect-history-api-fallback');
app.use(require('morgan')('short'));
app.use(history());
(function initWebpack() {
const webpack = require('webpack');
const webpackConfig = require('./webpack/common.config');
const compiler = webpack(webpackConfig);
app.use(require('webpack-dev-middleware')(compiler, {
noInfo: true, publicPath: webpackConfig.output.publicPath,
}));
app.use(require('webpack-hot-middleware')(compiler, {
log: console.log, path: '/__webpack_hmr', heartbeat: 10 * 1000,
}));
app.use(express.static(__dirname + '/'));
})();
app.get(/.*/, function root(req, res) {
res.sendFile(__dirname + '/src/index.html');
});
const server = http.createServer(app);
server.listen(process.env.PORT || 3000, function onListen() {
const address = server.address();
console.log('Listening on: %j', address);
console.log(' -> that probably means: http://localhost:%d', address.port);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment