モジュールフェデレーションとは何か
バンドルしたライブラリは重複する
規模の大きいフロントエンドで複数の成果物を生成し、それをフロントエンドで読み込む構成を考える。
成果物としてはmain.jsとsub.jsがあり、それぞれにReactをバンドルしているとする。この場合、通常はmain.jsとsub.jsの両方にReactを含んでいる。
+-------+ +-------+
| React | | React |
+---+---+ +---+---+
| |
| Bundle | Bundle
| |
+-----+---------+ +-----+---------+
| | | |
| main.js | | sub.js |
| | | |
+---------------+ +---------------+
重複するライブラリをモジュール間で共有する
もし上記のReactのバージョンが同じであれば、両方にバンドルしているのは無駄といえる。sub.jsもmain.jsでバンドルしているReactを使用できれば生成されるJavaScriptのファイルを小さくできる。モジュールフェデレーションはこれを実現する。
+-------+
| React |<---------------------+
+---+---+ |
| |
| Module Federation | 利用
| |
+-----+---------+ +-----+---------+
| | | |
| main.js | | sub.js |
| | | |
+---------------+ +---------------+
いつ使うのか
1つのアプリケーションを複数の成果物で構成する必要のある場合に使用する。特にマイクロフロントエンドを採用する場合、この手法を用いる。それぞれの成果物の間に、互いに依存関係を持たせなければ、個別に開発やデプロイができる。
webpack 5
モジュールフェデレーションはwebpack 5になってサポートされた機能だ。現時点ではwebpackを採用する以外の選択肢は枯れ具合から言って避けたほうが良さそうだ。
実装の例
example-dog/webpack.config.js
const path = require('path');
const { ModuleFederationPlugin } = require('webpack').container;
module.exports = {
mode: 'development',
entry: './src/index.js',
output: {
filename: 'dog.js',
path: path.resolve(__dirname, 'dist'),
},
devServer: {
static: {
directory: path.join(__dirname, 'public'),
},
compress: false,
port: 9000,
},
plugins: [
new ModuleFederationPlugin({
remotes: {
cat: 'cat@http://localhost:9001/cat.js',
},
}),
],
};
example-dog/public/index.html
example-dog/src/index.js
import axios from "axios";
async function loadCat () {
const resp = await axios.get("/data.json");
const { getCat } = await import('cat/cat');
const catDom = getCat();
document.body.appendChild(catDom);
}
function component() {
const button = document.createElement('button', "a", "b");
button.innerHTML = "Load Cat";
button.onclick = loadCat;
return button;
}
document.body.appendChild(component());
example-cat/webpack.config.js
const path = require('path');
const { ModuleFederationPlugin } = require('webpack').container;
const deps = require('./package.json').dependencies;
module.exports = {
mode: 'development',
entry: './src/index.js',
output: {
publicPath: 'auto',
},
devServer: {
static: {
directory: path.join(__dirname, 'public'),
},
compress: false,
port: 9001,
},
plugins: [
new ModuleFederationPlugin({
name: 'cat',
filename: 'cat.js',
shared: {
axios: deps.axios,
},
exposes: {
"./cat": "./src/index",
},
// library: {
// type: 'var', // scriptタグを経由する、他のオプションはこちら https://github.com/webpack/webpack/blob/dev-1/schemas/plugins/container/ModuleFederationPlugin.json#L155
// name: 'cat' // importされるときの名前(この場合は、import('page1/xxxx'))
// },
// exposes: {
// Cat: './src/index.js',
// },
}),
],
};
example-cat/public/index.html
example-cat/src/index.js
export function getCat () {
const element = document.createElement('div');
element.innerHTML = "<p>Example Cat</p>"
return element;
}
参考資料
モジュールフェデレーション
- https://blog.hiroppy.me/entry/module-federation
- https://engineering.meetsmore.com/entry/2021/12/07/180110
- https://github.com/mizx/mfe-webpack-demo/blob/master/packages/app-01/src/pages/dialog-page.jsx
- https://github.com/module-federation/module-federation-examples
- https://github.com/module-federation/module-federation-examples/blob/master/advanced-api/dynamic-remotes/app1/src/App.js
- https://module-federation.github.io/
- https://qiita.com/mizchi/items/f335d3e37395dbffa593
- https://qiita.com/okmttdhr/items/d7087043f1c025eaee0e
- https://qiita.com/yokoto/items/351910ee094e730f17d0
- https://webpack.js.org/concepts/module-federation/
- https://zenn.dev/azukiazusa/articles/6686cb89ae13e5
- https://zenn.dev/azukiazusa/articles/6686cb89ae13e5
- https://zenn.dev/nbstsh/scraps/7cd14e40f17b72
- https://zenn.dev/nbstsh/scraps/d72acfa74a7541
webpack
- https://engineering.meetsmore.com/entry/2021/12/07/180110
- https://qiita.com/yokoto/items/351910ee094e730f17d0
- https://webpack.js.org/configuration/dev-server/
- https://webpack.js.org/configuration/mode/
- https://webpack.js.org/guides/getting-started/
- https://www.webdesignleaves.com/pr/jquery/webpack_basic_01.html