Commit d42cca3
authored
Dictionary (New Word): Module Federation (#199)
# Word
#### Module Federation
# Meaning/Definition
Module Federation is a feature in **Webpack 5** that allows
independently built and deployed JavaScript applications or modules to
share code and dependencies at runtime.
It enables multiple projects to work together as a single application
without needing to bundle everything upfront. This approach is commonly
used in **micro-frontend architectures**, where different teams build
and deploy separate parts of an application while still being able to
load each other’s components dynamically.
**Example**
* A dashboard app dynamically loads a charting component from another
app’s build instead of bundling its own copy, reducing duplication and
improving maintainability.1 parent 39f0131 commit d42cca3
1 file changed
Lines changed: 11 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
0 commit comments