Questions tagged [microfrontends]
Microfrontends are small, loosely coupled and independently developed frontend components that can be composed in a flexible way to make a frontend. They are the frontend pendant to microservices and are based on the same principles of breaking down a monolithic system.
13 questions
-1 votes
1 answer
137 views
Options for sharing frontend workflows across disparate applications
I am working on a form building feature that will be used across different applications within our organization. Since each app has a slightly different stack we are planning to implement this feature ...
-2 votes
1 answer
138 views
Micro Frontend architecture and different teams
I often get the argument that, if only a single team is working on the UI development, then the UI should not be developed as a set of Micro Frontends, with each one representing a subdomain. I would ...
1 vote
0 answers
256 views
How do you design a micro-app Blazor project?
I have been tasked with creating a unified UI for my current company for our Blazor Apps. We have 15 or so apps and we need to add more. Our current requirements are: UI appears the same The Menu ...
5 votes
0 answers
1k views
How to implement micro-frontends with Native Apps?
I'm working with Web (react) and Mobile (IOS, Android) teams. And I find that even with a microservices architecture we end up always doing duplicated work at the front end/client level. How to ...
0 votes
3 answers
581 views
how to build microservices that also have GUIs
In a microservices architecture where each component does one thing, how do you handle GUI logic? How do you avoid building a front end web application that has a lot of smarts built into it where it ...
14 votes
1 answer
889 views
Redundant code sent down the pipe with Micro-frontends
My understanding of Micro-frontends is that the key problem they solve is in helping enterprises have multiple, possible disparate teams, work on individual components/small-apps that will be used to ...
2 votes
2 answers
2k views
Supporting multiple javascript frameworks in eventual single application
We are building several applications that will eventually be one front-end application. It is split up into several projects at the moment where each project is managed by its own scrum team. The ...