component-ng16 code demo
November 26, 2023 ยท View on GitHub
Description
This example shows how to setup Webpack Module Federation where the shell dynamically instantiates an Angular component and adds it to the DOM. It also shows how to pass inputs to the Angular component.
The remote webpack modules contains an Angular module and an Angular component which the shell dynamically loads without using Angular routing. It shows 4 different ways to load the Angular module/component.
The shell app is rendered in a red colored background and the remotely loaded mfe1 app is rendered in a blue colored background.
How to run
- Go to
/code-demos/component-ng16/shell-ng16folder and runnpm i, followed bynpm start. This will start the shell app on http://localhost:4200. - Go to
/code-demos/component-ng16/mfe1-ng16folder and runnpm i, followed bynpm start. This will start the mfe1 app on http://localhost:4201.
To see the Angular component from the mfe1 app loaded into the shell go to the shell's URL and click on any of the Load MyComponent ... buttons.
MFE1 app
The mfe1 app is an Angular 16 app that contains an Angular feature module named MyFeatureModule, where the MyComponent Angular component is declared. This component represents the micro frontend that we want to expose via Webpack Module Federation.
The mfe1 app will load the MyComponent Angular component on page load.
Exposed webpack module
On the webpack configuration file for mfe1 app you will find the declaration of the webpack modules to expose:
exposes: {
"./my-feature-module": "./src/app/my-feature/my-feature.module.ts",
"./my-component": "./src/app/my-feature/my-component/my-component.component.ts",
},
The above defines two webpack modules:
- one named
my-feature-moduleand that is mapped to the ./src/app/my-feature/my-feature.module.ts file, which is where theMyFeatureModuleAngular module is defined. - one named
my-componentand that is mapped to the ./src/app/my-feature/my-component/my-component.component.ts file, which is where theMyFeatureModuleAngular module is defined.
This example is exposing two webpack modules to show different ways of loading the MyComponent Angular component on the shell.
Dev platform
When you run the mfe1 app you will see the text MFE1 dev platform. This is to call out the fact that the mfe1 app is not exposed in its entirety via Webpack Module Federation, only the MyFeatureModule Angular feature module or the MyComponent Angular component are. Everything else in the mfe1 app is there only with the sole purpose of supporting the local development of the mfe1 app, more specifically, the development of the MyComponent Angular component.
This means that the input value test input value from dev platform set by the dev platform is not part of the exported component.
Shell app
The shell app is an Angular 16 app that dynamically instantiates an Angular component exposed by the mfe1 app and adds it to the DOM. You can test this by clicking on any of the Load MyComponent ... buttons. All of the load buttons produce the same end result through slighlty different code.
Note
The different versions are just to show some of the possible ways to dynamically load an Angular component without using Angular routing. None of them is significantly better than the other, you should choose the one that works best for you or implement your own variation.
How the remote is loaded into the shell
The load buttons will:
- load the remote webpack module from the mfe1 app using the
loadRemoteModulefunction from the@angular-architects/module-federationnpm package. Version 1, Version 2 and Version 3 will load the exposed Angular module whilst Version 4 will load the exposed Angular component. - the versions that load the exposed Angular module use different ways to instantiate the Angular module and then instantiate and attach to the DOM the
MyComponentAngular component. - the version that loads the exposed Angular component instantiates and attach to the DOM the
MyComponentAngular component without having to create an Angular Module.
The code contains detailed comments to explain each step on all four versions.
Webpack Module Federation
The setup of Webpack Module Federation was done using the @angular-architects/module-federation npm package, which aims to streamline the setup of Webpack Module Federation for Angular apps. For more info see Basics of @angular-architects/module-federation npm package.
Also, read the official docs at: