All glossary terms
Design

Micro-frontend

A micro-frontend architecture decomposes a single web application into multiple independently developed and deployed frontend modules — each owned by a different team and integrated at runtime (via Module Federation, iframes, or web components) or build time (via package composition). The pattern extends microservices thinking to the frontend.

Micro-frontends address the frontend monolith problem at scale: a single SPA owned by 8 teams becomes a release coordination nightmare. The architecture lets teams ship independently — Team A's micro-frontend updates without re-deploying Team B's. The trade-offs are real: shared dependencies (React versions, design tokens, auth state) require explicit coordination; bundle size grows because shared code is harder to dedupe; runtime composition (Module Federation) carries genuine integration risk. The pragmatic threshold: fewer than 4 teams owning the frontend rarely justify micro-frontends; more than 10 teams almost always do.

Related terms