Skip to content

Commit d42cca3

Browse files
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

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: ../../layouts/word.astro
3+
title: "Module Federation"
4+
---
5+
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.
6+
7+
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.
8+
9+
**Example**
10+
11+
* A dashboard app dynamically loads a charting component from another app’s build instead of bundling its own copy, reducing duplication and improving maintainability.

0 commit comments

Comments
 (0)