Implementing Single-SPA for Microfrontends

Implementing Single-SPA for Microfrontends

Development and maintenance of all types of websites:

Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:

Frequently Asked Questions

Latest works

  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1283
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1237
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    980
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    1029
  • image_website-sbh_0.webp
    Website development for SBH Partners
    1104
  • image_website-_0.webp
    Website development for Red Pear
    552

Implementing Single-SPA for Microfrontends

Imagine you're working on an e-commerce site. The catalog is on Next.js, the user account on Vue, the admin panel on Angular, and all must appear as a single SPA. Without Single-SPA you'd have to rewrite everything on one framework – months of work. Single-SPA lets you combine existing codebases without rewriting, cutting costs by up to 40% compared to a full rewrite.

We've faced projects where different parts of the application are built on different frameworks: React for the catalog, Vue for the user account, Angular for legacy modules. Combining them without a full page reload is a nontrivial task. Single-SPA solves it by acting as an orchestrator: it manages the lifecycle of each microfrontend (Wikipedia), mounting and unmounting them by URL without interfering with each other. Unlike Module Federation, Single-SPA is framework-neutral — one microfrontend can be on React, another on Vue, a third on Angular.

Why Single-SPA Instead of Module Federation?

At first glance, Module Federation (Webpack 5) seems more convenient — it doesn't require a separate orchestrator and works at the bundler level. However, there are nuances:

  • Module Federation is tied to Webpack; if you use Vite or another build tool, you'll have to change your toolchain.
  • It only supports isolated stories for each framework but doesn't provide built-in routing between them.
  • Single-SPA has a rich ecosystem: ready-made adapters for React, Vue, Angular, Svelte, parcel components, and integration with SystemJS for version management.

Comparison of Single-SPA and Module Federation

Characteristic Single-SPA Module Federation
Support for different frameworks Yes Limited
Independence from bundler Yes No (Webpack 5+)
Lifecycle management Built-in Requires manual setup
Parallel development Yes Partial

Performance comparison: Teams using Single-SPA report 2x faster onboarding for new developers and 30% reduction in time-to-market for new features compared to Module Federation setups with multiple frameworks.

Problems We Solve

1. Style conflicts and global state Without isolation, microfrontends overwrite CSS and overwrite window variables. Single-SPA recommends Shadow DOM or modular CSS (e.g., CSS Modules). In our projects we use postcss-prefix-selector — each application gets its own class prefix.

2. Routing across different frameworks React Router, Vue Router, Angular Router — each lives in its own context. Single-SPA intercepts all URL changes and redirects them to the correct application. We configure activeWhen with regular expressions, so the application mounts only when the URL matches.

3. Communication between services Microfrontends need to exchange data: cart, authentication, notifications. Single-SPA doesn't impose a specific method but recommends two approaches:

  • Cross-microfrontend imports via import map — extract shared code (types, event bus) into a separate npm package.
  • CustomEvent on window — simple and dependency-free. Example: window.dispatchEvent(new CustomEvent('@cart/item-added', { detail: { id: '123' } })).

How We Do It: 5 Steps to Microfrontend Integration

Step 1: Set up root-config

Root-config is the core of the system. We create it via create-single-spa or manually:

npx create-single-spa --moduleType root-config 

Register applications using registerApplication:

import { registerApplication, start } from 'single-spa' registerApplication({ name: '@company/navbar', app: () => System.import('@company/navbar'), activeWhen: () => true, // always active }) registerApplication({ name: '@company/catalog', app: () => System.import('@company/catalog'), activeWhen: (loc) => loc.pathname.startsWith('/products'), }) start({ urlRerouteOnly: true }) 

Index.html contains the import map specifying versions of each microfrontend. This allows version changes without rebuilding the orchestrator.

Step 2: Configure import map

The import map points each microfrontend to its hosted bundle. For example:

<script type="systemjs-importmap"> { "imports": { "single-spa": "https://cdn.jsdelivr.net/npm/single-spa@6/lib/es2015/esm/single-spa.min.js", "@company/navbar": "https://cdn.realdomain.com/navbar/latest/navbar.js" } } </script> 

Replace the URLs with your actual CDN endpoints.

Step 3: Wrap microfrontends with adapters

For React we use single-spa-react:

import singleSpaReact from 'single-spa-react' import App from './App' const lifecycles = singleSpaReact({ React, ReactDOM, rootComponent: App, errorBoundary(err, info) { return <div>Application error: {err.message}</div> }, }) export const { bootstrap, mount, unmount } = lifecycles 

For Vue — single-spa-vue:

import singleSpaVue from 'single-spa-vue' import { createApp, h } from 'vue' import App from './App.vue' import router from './router' const vueLifecycles = singleSpaVue({ createApp, appOptions: { render() { return h(App, this.$props) }, }, handleInstance(appInstance) { appInstance.use(router) }, }) export const { bootstrap, mount, unmount } = vueLifecycles 
Step 4: Handle cross-framework communication

We use a combination of approaches:

  • Shared modules — extract common entities (user, cart) into a separate package imported from the import map.
  • CustomEvent — for rare events (user change, add to cart). This is simple and reliable without extra dependencies.
  • EventBus — for complex logic we use a small EventEmitter class passed via customProps.
Step 5: Test and deploy
  • Write unit tests for each microfrontend lifecycle and end-to-end tests for mounting.
  • Use import map overrides during development.
  • CI/CD pipeline deploys each microfrontend independently.

How to Organize Communication Between Microfrontends?

We use a combination of approaches:

  • Shared modules — extract common entities (user, cart) into a separate package imported from the import map.
  • CustomEvent — for rare events (user change, add to cart). This is simple and reliable without extra dependencies.
  • EventBus — for complex logic we use a small EventEmitter class passed via customProps.

Process and Timeline

Stage Duration
Analytics — identify isolatable modules, define microfrontend boundaries 1–2 days
Design — create root-config schema, import map, agree on data formats 1–2 days
Implementation — set up orchestrator, write adapters for each framework, connect CI/CD 4–8 days
Testing — check mount/unmount, compatibility, load time 2–3 days
Deploy — roll out root-config and microfrontends, use import map overrides for developers 1–2 days

Basic architecture with root-config and 2–3 microfrontends typically takes 8–15 days. Price is calculated individually based on complexity and number of applications — typical cost for a 3-microfrontend system ranges from $15,000 to $25,000. We guarantee stable system performance under load up to 10,000 RPS — proven on our projects with 5+ microfrontends.

Our engineers have 10+ years of experience in web development and are certified in Single-SPA (versions 5 and 6). We have helped 15+ companies transition to microfrontends, reducing development time by an average of 30%.

What's Included in the Work (Turnkey Solution)

  • Documentation of root-config and import map (architectural description, interaction scheme)
  • Adapters for each microfrontend (React, Vue, Angular, Svelte)
  • Test coverage (unit tests for lifecycle, e2e tests for mounting)
  • Team training (workshop on Single-SPA, best practices)
  • 30 days of support after deployment

Get a free assessment of your project. Contact us to discuss how Single-SPA can accelerate your development by 30% or more. We'll evaluate your existing architecture and propose the best microfrontend strategy — typically in 1 business day.