No release in over a year
Use your webpack builds independently
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 3.0
~> 0.19
 Project Readme

Webpacker::Remote

Gem Version codecov

  • support for create-react-app developed in a separate repo
  • support for multiple external frontend builds, right now webpacker is a singleton
  • support shakapacker
  • support for both webpack-asset-manifest-3 and webpack-asset-manifest-5 (including assets and without this key)

Usage

  • ensure you're using webpack-asset-manifest to generate proper manifest structure
  • build webpack bundle & upload build directory (incl. manifest.json) before deploy
  • in config/initializers/remote_webpacker.rb
# given we can fetch `https://asset_host/build/manifest.json`
# and it contains paths relative to `https://asset_host/build/`
REMOTE_WEBPACKER = Webpacker::Remote.new(root_path: 'https://asset_host/build/', config_path: 'manifest.json')
  • in app/views/layouts/application.html.erb (not javascript_pack_tag)
<%= javascript_pack_tag 'main', webpacker: REMOTE_WEBPACKER %>
#=> <script src='https://asset_host/build/static/js/main.2e302672.chunk.js'>

NOTE if you're on webpacker (not shakapacker), then you should use javascript_packs_with_chunks_tag

Of course, you can use as many build as you like and do blue-green deployments using gems like rollout

CRA Requirements

For create-react-app you should use webpack-assets-manifest instead of built-in webpack-manifest-plugin. You have to patch configuration like this:

  • in package.json
+    "customize-cra": "^1.0.0",
+    "react-app-rewired": "^2.2.1"
+    "webpack-assets-manifest": "^5.1.0"
...
-    "build": "react-scripts build"
+    "build": "react-app-rewired build"
  • add config-overrides.js
const { override } = require("customize-cra");
const WebpackAssetsManifest = require('webpack-assets-manifest')

const whenInMode = (mode, fn) => config => (config.mode == mode) ? fn(config) : config;

const removeWebpackPlugin = pluginName => config => {
  config.plugins = config.plugins.filter(
    p => p.constructor.name !== pluginName
  );
  return config;
};

const addWebpackPlugin = plugin => config => {
  config.plugins.push(plugin);
  return config;
};

const webpackerAssetManifestConfig = {
  integrity: false,
  entrypoints: true,
  writeToDisk: true,
  output: 'manifest.json'
};

module.exports = override(
  removeWebpackPlugin('ManifestPlugin'),
  whenInMode('production', addWebpackPlugin(new WebpackAssetsManifest(webpackerAssetManifestConfig)))
);
  • check PUBLIC_URL='https://...' npm run build and build/manifest.json should look like this:
{
  "entrypoints": {
    "main": {
      "assets": {
        "js": [
          "static/js/main.hashsum.js"
        ],
        "css": [
          "static/css/main.hashsum.css"
        ]
      }
    }
  },
  "main.css": "static/css/main.hashsum.css",
  "main.js": "static/js/main.hashsum.js"
}

Tests

Specify webpacker gem explicitly:

WEBPACKER_GEM_VERSION='shakapacker|6.2.1' bundle exec rspec
WEBPACKER_GEM_VERSION='webpacker|5.4.3' bundle exec rspec