Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
126 views

I have an Angular 20 project using Nx 21 with a micro-frontend architecture. There is a host application and two remote applications. All remotes use standalone components. The host app imports ...
Fabienne Hachez's user avatar
0 votes
1 answer
63 views

I am trying to use Module Federation to load a remote component. I can see that SharedComponentRole has a correct value, however on calling container.createComponent I get the following error: ...
Aleksandrs Jakovļevs's user avatar
0 votes
1 answer
153 views

I am having problem injecting a service from a library into the host and remote applications of my Angular Nx micro frontend. When the service is injected into the constructor of host/shell or the ...
Eddy Freeman's user avatar
  • 3,361
0 votes
0 answers
287 views

I'm working on a micro-frontend project using Angular 20 and @angular-architects/native-federation (v20.1.2). I have a host app running on localhost:4200 and a remote app on localhost:3000. I'm trying ...
AshwaniKumar Singh's user avatar
2 votes
0 answers
145 views

I'm migrating an Angular monorepo managed by NX. After running: npx nx migrate 20.5.0 (current version is 19.1.1) Everything completed without errors, and the app starts (no errors in the terminal or ...
anvyn's user avatar
  • 51
0 votes
0 answers
528 views

I have two Angular 19 applications set up with Webpack Module Federation (using the Angular CLI’s ESM‑compatible config). The host and remote both run the same Angular version (19.2.0), and I’m trying ...
Rajeev kotagiri's user avatar
0 votes
0 answers
30 views

I’m using Module Federation and need to check if a specific component (e.g., MenuComponent) is exposed in a remote application before loading it. Currently, I check if the remote app is running with ...
Tharindima Sudasinghe's user avatar
0 votes
1 answer
274 views

So I am using webpack 5 to demonstrate Module Federation in Angular 19. For this I have created a 'host-app' and a 'remote-app' and done all the required configurations related to webpack.config.js in ...
Santosh Thakur's user avatar
0 votes
0 answers
45 views

I'm facing an issue while rendering Angular Micro Frontends (MFE) in a host application with a different Angular version. Application Setup: Host/shell Application: Angular 12.1.5 Micro Frontends ...
Nirav Dudhat's user avatar
0 votes
1 answer
85 views

I have an angular application that uses module federation. My remote application has the ng-bootstrap library shared with it and it is able to inject NgbModal to open another component as a modal - ...
slyDog's user avatar
  • 49
0 votes
1 answer
161 views

Question: I’m encountering a process is not defined error when I try to load a remote Angular module via Module Federation in my Angular 17 host app. The remote app is using Angular 14. I'm using ...
Vishnu Kuppan's user avatar
0 votes
1 answer
2k views

I've upgraded my application (host and microfrontends) to Angular v18.2.4 and Native Federation 18.2.2. The host loads fine, but as it attempts to load another MFE, it seems there is a conflict in ...
Tony Brasunas's user avatar
0 votes
1 answer
791 views

Both shell and MFE are built with Angular, but v17 and v18 respectively. I'm exposing the bootstrapping function of MFE to shell. When the shell invokes it, I'm getting "RuntimeError: NG0400: A ...
Daniel Abhishekam's user avatar
0 votes
2 answers
1k views

I am using angular CLI 17 and module federation 17. I am trying to migrate to angular new build system. In the existing angular.json, I have this builder "builder": "ngx-build-plus:...
Muqthar Ali's user avatar
1 vote
1 answer
866 views

I'm trying to start a project with Angular 18 using the "bootstrap" function of the module federations tools: npm page of the module federation tool This is the way it should be (as it shown ...
Smuk's user avatar
  • 55
2 votes
1 answer
668 views

I'm migrating an existing Angular v16 module-federation application to Angular v18 and the esbuild-based native federation plugin. The application has a dozen microfrontends hosted inside the shell ...
Tony Brasunas's user avatar
-2 votes
1 answer
568 views

I'm new to the module federation and having some issue while loading host app, when using Host(React+vite) and Remote(angular18+custom-webpack). Remote : custome-webpack.config.js const ...
uday214125's user avatar
1 vote
0 answers
91 views

I want to bootstrap or initiate the MFE's routing, NgRx and other library instances from the Shell project programatically. Now I am doing lazy load of modules from shell as below loadChildren: () =&...
Gnik's user avatar
  • 7,508
0 votes
0 answers
134 views

How to extract the Component from module federation remote module At present I am having the below code Remote code: exposes: { './TodoModule': './src/todo/todo.module.ts', './...
Gnik's user avatar
  • 7,508
0 votes
1 answer
366 views

I have a microfrontend architecture. In that, I have an app called central, and I have other microfrontends that are defined in as routing in central routing module. All mfes are loading from that ...
Deviker's user avatar
  • 31
0 votes
1 answer
164 views

I'm trying to load an Angular remote component in another shell application, but I get: TypeError: Cannot read properties of undefined (reading 'get') and TypeError: Cannot read properties of ...
Duba's user avatar
  • 108
3 votes
4 answers
2k views

I'm trying to access a remote Angular microfronent configured with Native Federation, but error is thrown: Error: NG0203: inject() must be called from an injection context such as a constructor, a ...
Rogger Aldair Paredes Tavara's user avatar
1 vote
0 answers
148 views

I've 2 remote apps app1and app2 and a shell app myapp, since all the applications will be behind a proxy, each app is distinguished by base-href i.e, /app1,/app2 and /myapp respectively. From app1 ...
Karthik Prasad's user avatar
1 vote
0 answers
124 views

I am using Angular 15 and the module federation plugin to load a remote app into our application. I am having issues trying to just catch a ChunkLoadError when webpack fails to load a chunk. I created ...
mac's user avatar
  • 11
0 votes
1 answer
1k views

I've been trying to create a POC project to work with the Native Federation in a NX Monorepo, following a DDD approach structure. The mfe1 application in the project has a dependency to its domain and ...
n_denny's user avatar
  • 423
1 vote
1 answer
204 views

I have a angular NX monorepo, created few libs & applications, created a lib for shared service named theme import { Injectable, signal } from '@angular/core'; @Injectable({ providedIn: 'root' }...
kiranbabu's user avatar
  • 117
3 votes
1 answer
3k views

I'm reading up on module federation/ MFE and it all seems to make sense besides the remoteEntry.js file. So if I understand this correctly, my MFE: Creates a remoteEntry.js file which my host then ...
newcoder00's user avatar
1 vote
1 answer
1k views

I'm working with Module federation and I've a shell app and a host app. They are linked as follows: Shell Application: webpack.config.js plugins: [ new ModuleFederationPlugin({ remotes: { ...
String Name's user avatar
0 votes
0 answers
349 views

I have an Angular app with some microapps in it using module federation. When I Log-In to it and try to access those microapps "SOMETIMES RANDOMLY" I get the inject() must be called from an ...
mrrobot's user avatar
  • 11
0 votes
0 answers
350 views

I am trying to implement dynamic module federation where I have a host application and few remote applications. for example After running all the application including host app and later when I ...
chethu's user avatar
  • 374
0 votes
0 answers
718 views

I'm trying to implement a micro frontend architecture in my Angular application using Module Federation. The shell application loads remote modules from Mfe1 and Mfe2. I've successfully exposed and ...
tech savy's user avatar
  • 193
0 votes
1 answer
638 views

I want to achieve the lazy loading using module federation without shell application using angular 16. I configuring the module federation like this - new ModuleFederationPlugin({ name: 'myapp', ...
Ajinath  Jedhe's user avatar
1 vote
2 answers
1k views

I'm upgrading a set of Angular applications from v12 to v16, and they use Module Federation and the Angular Architects' module federation plugin. After upgrading each app's Angular version ...
Tony Brasunas's user avatar
0 votes
0 answers
207 views

I have created one Angular MFA Architecture app which have shell and remote apps which build on top of Angular V17.1. I have to create this below mentioned shell/host app routing to access AngularJS ...
uday s's user avatar
  • 63
1 vote
0 answers
283 views

I'm working on an Angular application utilizing Module Federation, currently consisting of 9 microfrontends (MFEs). Initially, I created a shared library for common functionalities like date format ...
ignotochi's user avatar
0 votes
1 answer
661 views

I'm currently facing an issue configuring a reverse proxy on IIS for my Angular applications. I have multiple micro-front end Angular apps, with a host app published on IIS using the address http://...
abolfazl_mehdi's user avatar
1 vote
0 answers
612 views

I am getting a NullInjectorError error when I use an Angular component in a federated module (via remoteEntry.js), while it is working well in a standalone Angualar app. It is (and has to be) a ...
Jan Dolejsi's user avatar
  • 1,561
3 votes
3 answers
2k views

I am struggling with the NG0203 error, while my colleagues are able to serve the project without any problem. I tried to upgrade and downgrade the versions of both Angular and Nx, but it did not work. ...
menethil's user avatar
1 vote
0 answers
473 views

I'm encountering an issue with an Angular micro front-end setup using Module Federation. My remote app has an assets folder containing fonts, and I'm facing 404 errors when trying to load these assets ...
abolfazl_mehdi's user avatar
0 votes
0 answers
389 views

I am getting below error while loading dynamic modules using Module-federation. I have one shell project and another demo project both are in angular v16. I am trying to load Demo project in side ...
Juhi Shaw's user avatar
0 votes
0 answers
386 views

Currently, I'm facing a challenge in my architecture based on Module Federation with Angular 17. I have two modules, the main SHELL module and a flexibility-view module, which is accessed directly ...
Marco_dev's user avatar
0 votes
1 answer
2k views

I'm experimenting with module federation for a project and I was successfully able to serve a remote application serving up a simple button, then have a host application consume that button for usage. ...
bard17's user avatar
  • 31
1 vote
1 answer
507 views

Trying to mfe an angular 8 project to an angular 15 shell project, both running separately just fine. I tried installing module federation to my angular 8 projects, but immediately errores emerged, is ...
Megi Kuka's user avatar
1 vote
0 answers
177 views

I have several Angular applications that use Module federation. There is a main application, several MicroFrontends and a shared library. All applications work perfectly when they are started using &...
Robin's user avatar
  • 31
0 votes
2 answers
805 views

I'm working on an Angular project which has a micro frontend architecture using angular-architects/module-federation. We're currently on version 10.x.x and looking into updating the version of Angular....
Artem Krasniuk's user avatar
1 vote
1 answer
1k views

I'm facing a challenge in my Angular project where I have a base app running on port 4500, and I've imported a remote app. In the remote app, I've created a shared service using a Subject and have ...
Rhutuja Kambale 's user avatar
1 vote
1 answer
237 views

Does NX dynamic module federation support SSR? If so can you please share any documentation available!! Reference link or a code snippet to understand the development/deployment. Somewhere in github ...
Renjith's user avatar
  • 21
0 votes
1 answer
1k views

I have added "@angular-architects/module-federation": "^17.0.1", after that i am getting this error as version compatible. working on micro-services. how to fix this? package.json: ...
Debasish's user avatar
0 votes
1 answer
1k views

I'm facing a strange issue with the App I took over. It's a NX Monorepo with Module Federation and three different Remotes within it. Host app contains following module-federation.manifest.json with ...
mat.hudak's user avatar
  • 3,306
1 vote
0 answers
96 views

Have created a microfronted app using the Module federation framework . Have exposed module of the remote microfrontend to the shell app . Have created a custom pipe in the remote module ,Have ...
user22270427's user avatar