Micro frontends—a microservice approach to front-end web development
For web apps, the front end is becoming bigger and bigger, and the back end is getting less important. Our web app at Weld (web/app creation tool) is 90% front-end code, with a very thin back end. I can imagine that a majority of new web apps being built today are dealing with a similar situation.
Web apps also change over time, as do development techniques and frameworks. This requires support for allowing different front-end frameworks to co-exist, e.g. older modules built in JQuery or AngularJS 1.x, combined with newer modules built in React or Vue.
The monolithic approach doesn’t work for larger web apps
Having a monolithic approach to a large front-end app becomes unwieldly. There needs to be a way of breaking it up into smaller modules that can act independently.
Example:
myapp.com/
- landing page built with static HTML.myapp.com/settings
- old settings module built in AngularJS 1.x.myapp.com/dashboard
- new dashboard module built in React.
I would imagine the following is needed:
- A shared codebase in pure JavaScript e.g. managing routing and user sessions. Also some shared CSS. Both should be as thin as possible.
- A collection of separate modules, “mini-apps”, built in various frameworks. Stored in different code repositories.
- A deployment system that bundles all the modules together from different repositories and deploys to a server, whenever a module is updated.
The solution: “micro frontends”
But as it turns out, a lot of other people is thinking about the same ideas. The common term is “micro frontends”.
Companies like Spotify, Klarna, Zalando, Upwork, and Allegro are using the micro frontends approach to build their web apps.
Implementing micro frontends
Here’s a few different approaches to implementing micro frontends:
- Isolating micro-apps into IFrames using libraries and Window.postMessage APIs to coordinate. IFrames share APIs exposed by their parent window.
- Multiple single-page apps that live at different URLs. The apps use NPM/Bower components for shared functionality.
- Using Varnish Cache to integrate different modules.
- Web Components as the integration layer.
- “Blackbox” React components.
Resources
- Ask Hacker News: “What do you use to build micro-front ends?”
- Project Mosaic by Zalando, a set of libraries to support a microservice style architecture for large scale websites. See also this presentation from Zalando Tech.
- Micro Frontends (GitHub) — will contain techniques, strategies and recipes for building a modern web app with multiple independent teams.
Read more
- ThoughtWorks Technology Radar: “Micro frontends”
- “Modernizing Upwork with Micro Frontends” — Sep Nasiri, Upwork
- “Introduction to Micro Frontends” — Assaf Gannon
- Presentation: “Micro Frontends: Building a modern webapp with multiple teams” — Michael Geers (JSUnconf.eu 2017 in Hamburg)
- “Microservice Grid and Micro Frontends” — Dejan Glozic
- “The monolithic frontend in the microservices architecture” — Ruben Oostinga, Xebia
- “Managing Frontend in the Microservices Architecture” (Monolithic vs. “Frankenstein” approach) — Bartosz Gałek, Bartosz Walacik, Paweł Wielądek at Allegro
- “Including Front-End Web Components Into Microservices” — Viktor Farcic