Module Federation
Module Federation is an architectural pattern for decomposing JavaScript applications. Similar to server-side microservices, it lets multiple JavaScript applications (or micro-frontends) share code and resources.
The Rspack team works closely with the Module Federation maintainers to deliver first-class support.
Use cases
Module Federation has several typical use cases, including:
- Allowing independent applications (called "micro-frontends" in micro-frontend architecture) to share modules without recompiling the entire application.
- Enabling different teams to work on different parts of the same application without needing to recompile the entire application.
- Providing dynamic code loading and sharing between applications at runtime.
Module Federation can help you:
- Reduce code duplication
- Improve code maintainability
- Reduce the overall size of applications
- Improve application performance
How to use
Module Federation (MF) currently offers multiple major versions; choose the one that fits your needs.
The key characteristics of each version are:
Module Federation v2.0
Module Federation 2.0 provides additional out-of-the-box features based on Module Federation, such as dynamic TS type hints, Chrome DevTools, Runtime plugins, and preloading, making it better suited for large-scale micro-frontend architectures.
You need to install the additional @module-federation/rsbuild-plugin plugin to use Module Federation v2.0.
Please refer to the Module Federation v2.0 official documentation for detailed usage.
Module Federation v1.5
This is the version built into Rspack. In addition to supporting Module Federation v1.0's capabilities such as module export, module loading, and dependency sharing, it also adds runtime plugin functionality, letting you extend the behavior and functionality of module federation.
You can enable it through Rsbuild's moduleFederation.options without installing additional plugins.
Example repositories
Rsbuild provides Module Federation example projects you can explore:

