What is a micro frontend?
The Micro Frontend style of architecture design does for the frontend of an application what microservices d...
For further actions, you may consider blocking this person and/or reporting abuse
Just testing this out and found it a lot easier than I expected, thank you this is a very neat article.
How would you address security concerns like seamlessly managing authentication & access control across multiple distributed apps?
How would you control/restrict who can add your export as a remote?
content security policy you can use.
Thank you very much for the article, was really helpful
Simple, Easy, Useful. Than you a lot!
Out of curiosity:
How to expose multiple components from the same "remote" app? And what if the "container" would be on Angular?
// React app => inject.js
// webpack.config.js
// Angular
I'm not angular expert, but I think you can use it like that.
Any special setup if you were to use different versions of react for the host app vs the child app?
No special setup required
Worst case: you can inject micro-frontend app to ref. This is valid solution when you want to use 2 different framework for microfrontend.
medium.com/design-systems-collecti...
Here you could find a great way to do that.
Could you please confirm if we need react Lazy Loading to render micro frontend app inside container?
Yes, we can do that.