module-federation-examples icon indicating copy to clipboard operation
module-federation-examples copied to clipboard

Implementation examples of module federation , by the creators of module federation

Results 243 module-federation-examples issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](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) |...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](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) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-react/7.31.8/age-slim)](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...

dependencies

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...

dependencies

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...

dependencies

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 ![image](https://user-images.githubusercontent.com/29992875/190669212-38fb9667-f86f-4508-8a60-7388e28fd1c3.png) webpack.dll.config ![image](https://user-images.githubusercontent.com/29992875/190667842-1b2c820d-49d5-43ed-a038-e0abda99b4cb.png) remoteEntry.js ![image](https://user-images.githubusercontent.com/29992875/190668289-02874460-1c94-45cf-b760-b52ce459e945.png) in the remoteEntry.js...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](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'],...

question

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...