VOOZH about

URL: https://thenewstack.io/the-case-for-microfrontends-and-moving-beyond-one-framework/

⇱ The Case for Microfrontends and Moving Beyond One Framework - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2025-09-24 09:00:39
The Case for Microfrontends and Moving Beyond One Framework
sponsor-dynatrace,sponsored-topic,
DevOps / Frontend Development / Software Development

The Case for Microfrontends and Moving Beyond One Framework

Microfrontends break large apps into independently deployable slices, allowing teams to work in parallel and choose their own tech stacks.
Sep 24th, 2025 9:00am by Alexander T. Williams
👁 Featued image for: The Case for Microfrontends and Moving Beyond One Framework
Image by Alex Shuper via Unsplash+.
The hardest part of building large applications today isn’t scaling the backend. It’s keeping the frontend from becoming an untouchable tangle of dependencies, brittle integrations, and stale UI components. Modern teams can no longer afford to treat the interface as a single slab of code guarded by one framework’s rules. In 2025, the smart ones are composing their apps like orchestras — each instrument tuned to its purpose, yet part of a bigger sound.

From Monolith to Mosaic

Monolithic frontends once felt like the safest bet. One repo, one framework, one set of conventions. The simplicity worked, until growth exposed its limits. Every new feature meant slower builds, heavier bundles, and risky deployments. Teams working in parallel tripped over each other’s changes, and upgrades became multiweek affairs. According to Google’s internal developer surveys, as much as 65% of developer time is wasted due to platformless, long build times. Microfrontends flipped that logic. Instead of a single, sprawling codebase, applications are split into independently deployable slices. Each slice has its own lifecycle, tech stack and release cadence, giving designers and developers — especially those looking for alternatives to Adobe products — more freedom in their tool choices. This autonomy reduces bottlenecks and improves deployment safety. For instance, a marketing banner can ship without waiting for a dashboard overhaul. With Webpack Module Federation, a host shell can load a remote slice dynamically:
new ModuleFederationPlugin({
 name: 'host',
 remotes: {
 checkout: 'checkout@http://localhost:3001/remoteEntry.js'
 }
})

However, the trade-off is complexity. Shared state, routing, consistent design systems, and version compatibility become harder problems. They require coordination across teams that may work in different stacks or follow different release cadences. Without governance, the mosaic risks becoming a collage.

Framework Agnostic by Necessity

The frontend world has cycled through Angular, React, Vue, Svelte, and more. Each framework brought its own build system, conventions, and quirks, and choosing one often locked an organization into years of tooling inertia. On the other hand, in a micro-frontend architecture, the grip of a single framework loosens. Teams can pick what fits their problem best, without forcing the rest of the application to follow suit. That freedom avoids costly rewrites. A team maintaining a decade-old Angular admin console can keep iterating without migrating to React just to match other parts of the app. At the same time, another can prototype in SolidJS or fiddle with Qwik without endangering the core. However, this flexibility demands discipline. Boundaries must be explicit, with well-defined contracts for props, events, and shared services:
interface ProductCardProps {
 id: string
 onAddToCart: (id: string) => void
}
Without contracts like this, integration drifts, data flows become unpredictable, and debugging becomes a nightmare. Framework agnosticism works when each slice treats interoperability as a primary requirement, not a nice-to-have.

The Runtime Layer Becomes the Real Platform

In a monolith, the framework was the platform. In micro-frontends, the runtime — often a lightweight shell — becomes the true foundation. It decides when and how each slice loads, how they communicate, and how they share resources.
In micro-frontends, the runtime — often a lightweight shell — becomes the true foundation.
Some teams write custom loaders, handling dynamic imports and orchestration manually. Others rely on mature solutions like Single-SPA or Piral, which provide mounting, lifecycle hooks and routing out of the box. The runtime also enforces performance strategies: prefetching assets, caching and CSS inlining across multiple slices. Similarly, it’s been documented that poorly tuned runtimes are a common source of production slowdowns in microfrontend apps. This layer also owns cross-cutting concerns like authentication and global error boundaries. It’s where shared dependencies are resolved to avoid loading multiple versions of React or other large libraries. The runtime must remain thin and observable, avoiding the temptation to grow into another monolith.

Design Systems as the Glue

Without a unifying design language, microfrontends risk feeling like stitched-together apps. Design systems prevent that. They encode typography, color, spacing, and interaction patterns in reusable components, making every slice feel part of the same product. Many teams distribute these systems as private npm packages or document them in Storybook. Design tokens, stored in JSON, are transformed during build so that visual updates propagate instantly:
{
 "color.primary": "#0055ff",
 "spacing.medium": "16px"
}
The biggest hurdle is cultural. Developers must adopt the shared system instead of forking. Designers need to anticipate multiple tech stacks consuming the same visuals. When managed well, the design system accelerates delivery, enforces accessibility standards, and ensures users experience a seamless interface — regardless of which team built a feature.

Deployment Pipelines Shift Left

Microfrontends break the synchronized release model. Each slice has its own CI/CD pipeline, often triggered independently. This accelerates delivery, but multiplies moving parts. A registry of deployed slices ensures the shell knows which version to load, reducing the risk of mismatched APIs. A minimal GitHub Actions example might look like this:
on: [push]
jobs:
 deploy:
 runs-on: ubuntu-latest
 steps:
 - uses: actions/checkout@v2
 - run: npm ci && npm run build
 - run: npm run deploy
With autonomy comes operational responsibility. Teams monitor uptime, error rates and performance budgets for their slices. Observability tools must report per-slice health, making it easy to identify which part of the system is failing. This shift moves ownership closer to the code, encouraging teams to treat their slice like a standalone product.

Security in a Distributed Frontend

Every microfrontend adds an entry point — and potential vulnerabilities. Dependency scanning, strict Content Security Policies (CSPs), and central token management are essential security measures. A simple CSP might look like: Content-Security-Policy: default-src 'self'; script-src 'self' https://trusted.cdn.com Veracode’s 2024 report found that 70% of scanned apps contain vulnerabilities in third-party code. In a microfrontend environment, that risk multiplies with each independent slice. Security reviews must treat slices as both independent and interconnected. Regular penetration tests, supply chain audits and runtime guards prevent one compromised slice from infecting the entire application. Security is not a separate phase, but an ongoing, integrated practice.

Microfrontends as an Organizational Pattern

Microfrontends aren’t just a technical pattern — they reshape how teams work. Code boundaries mirror responsibility boundaries. A checkout team can ship faster without waiting for homepage experiments, while still aligning on shared contracts.
In the hands of disciplined teams, microfrontends enable products to grow in scope without collapsing under their own weight.
This structure scales when teams integrate regularly, review each other’s slices, and maintain a shared platform roadmap. It fails when autonomy becomes isolation. Leaders must invest in cross-team communication, shared documentation, and platform ownership. When culture matches architecture, teams gain speed without sacrificing coherence. This further proves that microfrontends have moved past hype. In the hands of disciplined teams, they enable products to grow in scope without collapsing under their own weight. Beyond splitting and simplifying code, they create space for teams to move, experiment and deliver without losing the thread of a coherent product.

Conclusion

Microfrontends in 2025 are a proven way to scale applications without binding every decision to a single framework’s fate. They allow teams to operate at their own pace, choose their own tools, and deploy features without the risk of monolithic slowdowns. This freedom, however, comes with heightened responsibility. Governance, design consistency, runtime performance and security are not side projects, but core disciplines. Organizations that treat microfrontends as both a technical and cultural model stand to gain faster delivery, improved resilience, and greater adaptability in a shifting tech landscape. Those that ignore the coordination overhead risk creating a fragmented, hard-to-maintain system. The winners will be the teams that compose their frontends like orchestras, every slice distinct, yet playing in harmony.

FAQs

What is the main benefit of using microfrontends over a monolithic frontend? Microfrontends break large applications into independently deployable slices, allowing teams to work in parallel, choose their own tech stacks, and deploy without waiting on unrelated features. How do microfrontends affect application performance? Properly orchestrated runtimes and shared dependency management can keep performance in check, but poorly tuned runtimes or unoptimized slices can slow down load times. Are micro-frontends tied to a specific framework like React or Angular? No. One of the strengths of microfrontends is framework agnosticism — each slice can use the framework that best fits its requirements, as long as integration contracts are clearly defined. How do teams ensure a consistent look and feel across microfrontends? Design systems with shared components, tokens and style guidelines ensure a cohesive user interface, even when different stacks are in play.
Dynatrace redefines developer experience by unifying logs, metrics, traces, AI model telemetry, infrastructure, and security data into a single, scalable platform that integrates directly into IDEs and CI/CD pipelines.
Learn More
The latest from Dynatrace
Hear more from our sponsor
TRENDING STORIES
Alexander Williams is a full stack developer and technical writer with a background working as an independent IT consultant and helping new business owners set up their websites.
Read more from Alexander T. Williams
SHARE THIS STORY
TRENDING STORIES
TNS owner Insight Partners is an investor in: Real.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.