What Are Microfrontends?

What Are Microfrontends?

Danielle Maxwell | Tuesday, May 23, 2023 |  Frontend Microfrontend

Although micro-frontends are not new, they’re gaining popularity in the frontend community. Never heard of micro-frontends before? Not quite sure what they are or if you should use them? Well, let’s talk all about it!

What’s this micro-frontend thing?

In 2016, Thoughtworks noted the emergence of micro-frontends within their teams as a way to deal with large and sprawling browser applications they found difficult to maintain.1 This new approach they discussed is an architecture style where a frontend’s codebase can be divided into smaller pieces or apps. The code is then later integrated together for a uniform experience for web users. Instead of having all of your frontend code in a monolith, it could be split up by pages or features.

If you’re wondering if this is like utilizing the microservices approach, you’re right! Just as backend teams have run into issues maintaining monoliths and dealing with deployment bottlenecks, so too have frontend teams.

Would this allow teams to use different frontend frameworks? Working with micro-frontends gives teams the flexibility to work with different tech stacks. So, yes, one app could be created with React while another uses Angular. However, it’s important to note that just because this can be done it doesn’t necessarily mean that it should.

How are micro-frontend apps integrated?

One of the main challenges of the micro-frontend architecture is determining how to integrate multiple apps to ensure a cohesive user experience online. Two options are build-time integration and run-time integration.

Build-time Integration

With build-time integration, each app can be published to a package manager, like npm, and then installed into another app as a dependency. When using this approach, a container app can be used. The container would install all of the other apps as a dependency and then be deployed. Container apps determine when and where to show other apps and display common UI elements such as headers and footers. This may sound simple, but build-time integration will require the container app to update dependencies any time there’s a change and then it must be redeployed.

Run-time Integration

Once sites are built, it is possible to use run-time integration to combine micro-frontends. With this integration type, there are a few different options to choose from.

First up, there’s server-side composition which puts micro-frontends inside of a view that’s cached at the CDN level. Server-side composition can also be provided to the client at compile time. Next there’s edge-side composition, which will combine a view at the CDN level that combines micro-frontends from the origin before providing to a client. 2

Finally, client-side composition is another option. It can also use a container app that is deployed separately like in build-time integration. However, with client-side composition, it is possible to use methods such as Module Federation (a Webpack plugin released in 2020), import maps, iframes (yes, the HTML element), or web components to combine the micro-frontends.

Integrating micro-frontends with client-side composition can take time and is more complex than build-time integration, but the container app would not need to regularly update/install dependencies once an app is changed. Additionally, it would not have to be deployed every time a change is made and this is more in line with the goals of using micro-frontends.

Want to learn more about micro-frontends?

To learn even more about micro-frontends, I highly recommend checking out single-spa. It’s a framework that may be used to bring together multiple JavaScript micro-frontends in a frontend application.3 Their documentation is a great resource for gaining more knowledge about the architecture. You can also check out a talk I gave at React Miami that illustrates some of these same ideas.

If you’re looking to get into microservice architectures, check out Ensign, a platform and community for developers building event-driven apps.

Photo by Hans-Peter Gauster on Unsplash

Photo by Hans-Peter Gauster via Unsplash

About This Post

Micro-frontends could be the ideal solution if your monolithic frontend is causing growing pains.

Written by:

Share this post:

Recommended  Rotations

butterfly
View all

RenderATL 2024 and Atlanta's Booming Tech Scene

Over the past few years Atlanta’s tech scene has grown at a rapid pace. There was no better place for proof of this than at RenderATL 2024.

Jul 12, 2024

NLP with Javascript Using winkJS

winkJS is a collection of open source libraries, created by Graype Systems, designed to make Natural Language Processing (NLP), machine learning, and statistical analysis accessible in JavaScript. Let’s take an in-depth look into …

Jun 10, 2024

My First Year as a Junior Developer at Rotational Labs

🎉 I just celebrated my first year as a junior developer. In this post, I’ll share some of the things I’ve learned and techniques I’ve grown to value over the last twelve months.

Sep 1, 2023
Enter Your Email To Subscribe