DEV Community

Discussion on: Microfrontends, what and why?

Collapse
 
phillipgd1992 profile image
Felipe Guizar Diaz

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...

Thread Thread
 
hurricaneinteractive profile image
adro.codes

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.