-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Develop Custom Component using Webpack Module Federation #863
Labels
Comments
ymaheshwari1
added a commit
that referenced
this issue
Nov 29, 2024
ymaheshwari1
added a commit
that referenced
this issue
Nov 29, 2024
…he components from remote(#863)
ymaheshwari1
added a commit
that referenced
this issue
Nov 29, 2024
ymaheshwari1
added a commit
that referenced
this issue
Nov 29, 2024
ymaheshwari1
added a commit
that referenced
this issue
Nov 29, 2024
ymaheshwari1
added a commit
that referenced
this issue
Dec 2, 2024
1 task
ymaheshwari1
added a commit
that referenced
this issue
Dec 3, 2024
[POC] Implemented: feature to load component from remote using module federation(#863)
Changes verified and working fine in release v2.13.0. Hence, closing this issue. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What is the motivation for adding/enhancing this feature?
Module Federation is a JavaScript technique that allows resources to be shared across multiple applications. The main motivation is that multiple separate builds should come together to form a single application. These separate builds act as containers, capable of exposing and consuming code among themselves to create a unified application.
In our approach, we will have at least two applications per app. One is called the host application, which contains all the essential UI, and the other is called the remote application, which hosts all the custom components. Custom components will be imported at runtime into the host application.
For more detail - https://webpack.js.org/concepts/module-federation
What are the acceptance criteria?
Order Invoicing component is implemented using module federation.
Can you complete this feature request by yourself?
Additional information
The text was updated successfully, but these errors were encountered: