module-federation-examples
module-federation-examples copied to clipboard
Implementation examples of module federation , by the creators of module federation
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@fmfe/genesis-compiler](https://fmfe.github.io/genesis-docs/) ([source](https://togithub.com/fmfe/genesis)) | [`2.2.1` -> `2.2.5`](https://renovatebot.com/diffs/npm/@fmfe%2fgenesis-compiler/2.2.1/2.2.5) |...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint-plugin-react](https://togithub.com/jsx-eslint/eslint-plugin-react) | [`7.30.1` -> `7.31.8`](https://renovatebot.com/diffs/npm/eslint-plugin-react/7.30.1/7.31.8) | [](https://docs.renovatebot.com/merge-confidence/)...
Module Federation is implemented in webpack4. The current example demonstrates that MF of webpack4 and webpack5 call each other
Bumps [terser](https://github.com/terser/terser) from 5.14.0 to 5.15.0. Changelog Sourced from terser's changelog. v5.15.0 Basic support for ES2022 class static initializer blocks. Add AudioWorkletNode constructor options to domprops list (#1230) Make identity...
Bumps [terser](https://github.com/terser/terser) from 5.14.0 to 5.15.0. Changelog Sourced from terser's changelog. v5.15.0 Basic support for ES2022 class static initializer blocks. Add AudioWorkletNode constructor options to domprops list (#1230) Make identity...
Bumps [terser](https://github.com/terser/terser) from 5.14.0 to 5.15.0. Changelog Sourced from terser's changelog. v5.15.0 Basic support for ES2022 class static initializer blocks. Add AudioWorkletNode constructor options to domprops list (#1230) Make identity...
I use ModuleFederationPlugin to shared a react module, but some lib such as react、react-dom、redux and so on was builded by DllPlugin; webpack.pub.config  webpack.dll.config  remoteEntry.js  in the remoteEntry.js...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.7.17` -> `18.7.18`](https://renovatebot.com/diffs/npm/@types%2fnode/18.7.17/18.7.18) |...
1. Include all dependencies in shared ```javascript const { dependencies } = require('./package.json'); { shared: { ...dependencies, react: { singleton: true, requiredVersion: dependencies['react'], }, 'react-dom': { singleton: true, requiredVersion: dependencies['react-dom'],...
After inspecting the code, I discovered that the problem you encountered here is entirely different from what I had imagined. In this pull request I pass shared dependencies through yet...