Why do we need a proxy on an express.js server in order to get webpack hot reloading server functionality combined with react-routing Why do we need a proxy on an express.js server in order to get webpack hot reloading server functionality combined with react-routing express express

Why do we need a proxy on an express.js server in order to get webpack hot reloading server functionality combined with react-routing


You don't, but it's tricky. So the first requirement is that you have a configurable asset root. This also pays off if you need a CDN in the future. Let's say this is in an envvar ASSET_URL which is available both when running your webpack dev server and your express server.

You need the usual webpack dev server, plus the CORS header. This lets your main express server just point to the webpack dev server in the script/link tags.

ASSET_URL is like: http://localhost:8081

Webpack

var config = require('./webpack.config');var port = '8081', hostname = 'localhost';if (process.env.ASSETS_URL) {    var assetUrlParts = url.parse(process.env.ASSETS_URL);    port = assetUrlParts.port;    hostname = assetUrlParts.hostname;}new WebpackDevServer(webpack(serverConfig), {  publicPath: serverConfig.output.publicPath,  hot: true,  headers: { "Access-Control-Allow-Origin": "*" }}).listen(port, 'localhost', function (err, result) {  if (err) {    console.log(err);    process.exit(1);  }  console.log('Listening at ' + url.format({port: port, hostname: hostname, protocol: 'http:'}));});

Then in your webpack config file you have most of the same junk.

var port = '8081', hostname = 'localhost';if (process.env.ASSETS_URL) {    var assetUrlParts = url.parse(process.env.ASSETS_URL);    port = assetUrlParts.port;    hostname = assetUrlParts.hostname;}...  entry: [    'webpack-dev-server/client?' + url.format({port: port, hostname: hostname, protocol: 'http:'}),    'webpack/hot/only-dev-server',    ...  output: {    path: __dirname + '/public/',    filename: 'bundle.js',    publicPath: process.env.ASSETS_URL || '/public/'

Express Server

The only special thing here is you need to somehow get process.env.ASSETS_URL into the locals of your templates.

<head>    <link rel="stylesheet" href="{{ assetsUrl }}/main.css"></head><body>    ...    <script type="text/javascript" src="{{ assetsUrl }}/bundle.js"></script</body>