Знакомство с Module Federation
Разберитесь в основной идее Module Federation и в том, как этот подход позволяет приложениям динамически предоставлять и подключать модули.
«Знакомство с Module Federation» — бесплатный урок Micro Frontends Architecture with Module Federation на CoddyKit. Это урок 2 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения Micro Frontends Architecture with Module Federation, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс Micro Frontends Architecture with Module Federation содержит 4 уроков всего.
Части этого урока еще не переведены и отображаются на английском.
What is Module Federation?
Welcome! In this lesson, we'll dive into Module Federation, a powerful feature of Webpack that's key to building modern Micro Frontends.
It allows different JavaScript applications to share and consume code from each other dynamically at runtime.
The Monolith Problem
Traditionally, large web applications are built as a single, giant codebase – a monolith. This can lead to:
- Slow development cycles
- Difficulty scaling teams
- Tight coupling between parts
Module Federation helps overcome these challenges by enabling a more modular approach.
Dynamic Code Sharing
The core idea of Module Federation is dynamic code sharing. Instead of bundling all code together at build time, it lets applications load pieces of code from other applications at runtime.
Think of it like an app saying, "I need this component, and I know where to get it from another running app!"
Key Players: Host & Remote
In a Module Federation setup, we have two main types of applications:
- Remote Application: This app exposes its code (components, functions) for others to use.
- Host Application: This app consumes or uses the code exposed by a remote application.
An app can be both a host and a remote simultaneously!
Exposing Modules: Remote Apps
A remote application uses Webpack's ModuleFederationPlugin to declare which parts of its code it wants to expose. These exposed modules become available for other applications to consume.
Here's a simplified example of how a remote app might expose a Button component:
/* webpack.config.js (Remote App) */
const { ModuleFederationPlugin } = require('webpack').container;
module.exports = {
// ... other webpack config
plugins: [
new ModuleFederationPlugin({
name: 'remoteApp',
filename: 'remoteEntry.js',
exposes: {
'./Button': './src/Button.js',
},
}),
],
};Consuming Modules: Host Apps
A host application also uses the ModuleFederationPlugin to specify which remote applications it wants to consume modules from. It provides a URL where the remote's entry file (e.g., remoteEntry.js) can be found.
Here's how a host app might declare its intent to use remoteApp:
/* webpack.config.js (Host App) */
const { ModuleFederationPlugin } = require('webpack').container;
module.exports = {
// ... other webpack config
plugins: [
new ModuleFederationPlugin({
name: 'hostApp',
remotes: {
remoteApp: 'remoteApp@http://localhost:8081/remoteEntry.js',
},
}),
],
};How it Works: The Entry File
When a host application starts, it doesn't immediately load all remote code. Instead, it first loads a tiny file from the remote called remoteEntry.js.
This file acts as a manifest, telling the host what modules the remote exposes and how to dynamically load them if needed. Code is fetched only when requested!
The Power of Independent Deployments
One of the biggest advantages of Module Federation is enabling independent deployments.
Teams can develop, test, and deploy their micro frontends separately without coordinating a large, synchronized release for the entire application. This speeds up delivery and reduces risk.
Sharing More Than UI
Module Federation isn't just for sharing UI components. You can expose and consume various types of code:
- Utility functions
- Data services
- React hooks or similar logic
- Shared styles or themes
This allows for robust code reuse across your federated applications.
Test Your Knowledge
Module Federation introduces new ways for applications to interact. Which of the following statements correctly describe the core concepts?
Module Federation Recap
Great job! You've grasped the fundamental idea of Module Federation.
- It's a Webpack feature for dynamic code sharing.
- Apps can be hosts (consuming) or remotes (exposing).
- It enables independent deployments and efficient code reuse.
Next, we'll look deeper into how host and remote applications are set up!
Часто задаваемые вопросы
Урок «Знакомство с Module Federation» бесплатный?
Да — полный текст урока «Знакомство с Module Federation» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс Micro Frontends Architecture with Module Federation, подпишись на CoddyKit PRO. Курс Micro Frontends Architecture with Module Federation содержит 4 уроков всего.
Чему я научусь в уроке «Знакомство с Module Federation»?
Разберитесь в основной идее Module Federation и в том, как этот подход позволяет приложениям динамически предоставлять и подключать модули. Ты практикуешь Micro Frontends Architecture with Module Federation с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.
Нужен ли мне опыт, чтобы начать Micro Frontends Architecture with Module Federation?
Предыдущий опыт не требуется. Micro Frontends Architecture with Module Federation на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 2 из 4.
Сколько времени занимает урок «Знакомство с Module Federation»?
Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.
Можно ли писать и запускать код в этом уроке Micro Frontends Architecture with Module Federation?
Да. Каждый урок Micro Frontends Architecture with Module Federation включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.
Все уроки этого курса
- Повторение основ Webpack
- Знакомство с Module Federation
- Хост-приложения и удалённые приложения
- Настройка общих зависимостей