I've been seeing the topic of "Microfrontends" being talked about on Twitter recently.
If anyone has any experience in it, please explain what it is and why you'd use it.
(Optional): What are the pros and cons?
I've been seeing the topic of "Microfrontends" being talked about on Twitter recently.
If anyone has any experience in it, please explain what it is and why you'd use it.
(Optional): What are the pros and cons?
For further actions, you may consider blocking this person and/or reporting abuse
Sanjampreet Singh -
Camilo Micheletto -
Shwet Khatri -
Saul Fernandez -
Once suspended, hurricaneinteractive will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, hurricaneinteractive will be able to comment and publish posts again.
Once unpublished, all posts by hurricaneinteractive will become hidden and only accessible to themselves.
If hurricaneinteractive is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to adro.codes.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag hurricaneinteractive:
Unflagging hurricaneinteractive will restore default visibility to their posts.
Top comments (4)
Very interesting, I have heard that MicroFEs has a lot of overhead and quite a few people were against it.
To me, if a component library was built in a good way, then you would be able to extend a single component without worrying too much about breaking everything. That obviously depends on the complexity of the component. (I might have too many expectations from a component library though)
Thanks for the very detailed reply!
In addition to the Neil Green comment. Micro-frontends is also an approach for strangling a monolith application or evolving it using a strangler pattern. FE technologies evolve very fast and MFEs enabling steadily migrating an application.
I wrote some months ago how to strangle a PHP application to making it server-side and client-side render views using Vue.js.
medium.com/js-dojo/strangling-a-mo...
True true, instead of refactoring the whole app, you start by converting small components until the whole app is converted. Definitely a good use for MFEs.