11 questions
1
vote
0
answers
21
views
Microfrontends - React in an Angular host
I've been trying to have a React app using Vite acting as a microfrontend in an Angular shell / host using Native Federation (also tried using Module Federation). After some time searching, I managed ...
0
votes
0
answers
47
views
NX Cannot read properties of null (reading 'default')
I was trying to setup fabricjs in my application. since application uses micro-frontends , I use @angular-architects/module-federation for custom builder. when I install fabricjs it breaks otherwise ...
0
votes
0
answers
62
views
Load Angular remote into a typescript/javascript module shell using Native Federation
I am looking into micro frontends and Native Federation. Would it be possible to create a typescript/javascript module 'shell' using @softarc/native-federation, and into that shell, dynamically load ...
0
votes
0
answers
138
views
How to share LocalStorage from Remote apps into Host in Native Federation and Angular 18
I have a monorepo with three standalone Angular 18 applications, each with its own library. In the libraries of the remote apps, I use NgRx, and when I run each app on its own, everything works fine, ...
0
votes
0
answers
273
views
How to Dynamically loading remote components using their selectors through native federation in angular?
I have a micro frontend (products repo) running on port 4202. The federation configuration for this repo (federation.config.js) is as follows:
const { withNativeFederation, shareAll } = require('@...
0
votes
1
answer
1k
views
How to solve ERROR w: NG0203 in Angular 18 with Native Federation
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 ...
0
votes
2
answers
765
views
Migration of module federation to native federation in angular 17 project
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:...
0
votes
0
answers
114
views
Angular 18.2 Native Federation, Firebase "serve" command doesn't work as expected
I am trying to create an angular project to work with the Firebase (@angular/fire) and Native Federation in an NX Monorepo.
This is my setup:
tsconfig.base.json
{
"compileOnSave": false,
...
1
vote
0
answers
173
views
Native federation - Angular 17: Not Found http://localhost:4201/_angular_core-17_0_5-dev.js
I am working with micro frontends using native federation in Angular 17. And when I run the microfront and my host app, and I load my host app in the browser, I get the folloging error, and I don't ...
0
votes
1
answer
318
views
Prevent Angular router from reloading a Micro Frontend component
I'm using the Native Federation architecture to load a Micro Frontend into a Shell. The Micro Frontend contains an iFrame which loads a legacy AngularJS application. The AngularJS application uses an ...
2
votes
1
answer
453
views
404 Not Found for shared library with Angular Native Federation
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 ...