-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

The Art of Micro Frontends
By :

I hope you are now convinced that micro frontends may bring something good to your projects, but some work needs to be done before we can actually start implementing them. As you've learned in the previous chapter, decomposing the domain properly is the most important aspect.
Once we've done our homework regarding the basics, it's time to look at the implementation options. Sometimes, it may be quite obvious how to implement our application; however, most of the time, it makes sense to check against some existing guides and best practices first.
There are many different types of micro frontend architectures. Looking at microservices, the situation feels much more fragmented for micro frontends. One reason for this fragmentation is that the frontend gives us more options to play with. For instance, we could render everything server-side but also do this on the client side. We could also go for a mixed approach.
...