Skip to main content
Version: 4.x

Getting Started with single-spa

JavaScript Microfrontends

single-spa is a framework for bringing together multiple JavaScript microfrontends in a frontend application. Architecting your frontend using single-spa enables many benefits, such as:

Demo and Examples

Visit the live demo for an example that highlights single-spa usage. The source code is available in the single-spa-examples repository.

Also, you can check out a simple webpack starter project which is simpler, and may be easier to understand and get started with.

Architectural Overview

single-spa takes inspiration from modern framework component lifecycles by applying lifecycles to entire applications. It was born out of Canopy's desire to use React + react-router instead of being forever stuck with our AngularJS + ui-router application, and now single-spa supports almost any framework. Since JavaScript is notorious for the short life of its many frameworks, we decided to make it easy to use whichever frameworks you want.

single-spa apps consist of the following:

  1. Applications, each of which is an entire SPA itself (sort of). Each application can respond to url routing events and must know how to bootstrap, mount, and unmount itself from the DOM. The main difference between a traditional SPA and single-spa applications is that they must be able to coexist with other applications, and they do not each have their own HTML page.

    For example, your React or Angular SPAs are applications. When active, they listen to url routing events and put content on the DOM. When inactive, they do not listen to url routing events and are totally removed from the DOM.

  2. A single-spa-config, which is the HTML page and the JavaScript that registers applications with single-spa. Each application is registered with three things:

    • A name
    • A function to load the application's code
    • A function that determines when the application is active/inactive

How hard will it be to use single-spa?

single-spa works with ES5, ES6+, TypeScript, Webpack, SystemJS, Gulp, Grunt, Bower, ember-cli, or really any build system available. You can npm install it, jspm install it, or even just use a <script> tag if you prefer.

Our objective is to make using single-spa as easy as possible. But we should also point out that this is an advanced architecture that is different from how front-end applications are typically done.

If you're not starting your application from scratch, you'll have to migrate your SPA to become a single-spa application.

single-spa works in Chrome, Firefox, Safari, IE11, and Edge.

Isn't single-spa sort of a redundant name?

Yep.

Documentation

The documentation is divided into several sections:

You can help improve the single-spa website by sending pull requests to the single-spa.js.org repository.

Simple Usage

For a full example, check out this simple webpack example or this starting from scratch tutorial.

To create a single-spa application, you will need to do three things:

  1. Create an HTML file.
<html>
<body>
<script src="single-spa-config.js"></script>
</body>
</html>
  1. Create a single-spa-config. Check out the docs for more detail.
import * as singleSpa from "single-spa";

const appName = "app1";

/* The loading function is a function that returns a promise that resolves with the JavaScript application module.
* The purpose of it is to facilitate lazy loading -- single-spa will not download the code for a application until it needs to.
* In this example, import() is supported in webpack and returns a Promise, but single-spa works with any loading function that returns a Promise.
*/
const loadingFunction = () => import("./app1/app1.js");

/* single-spa does some top-level routing to determine which application is active for any url. You can implement this routing any way you'd like.
* One useful convention might be to prefix the url with the name of the app that is active, to keep your top-level routing simple.
*/
const activityFunction = (location) => location.pathname.startsWith("/app1");

singleSpa.registerApplication(appName, loadingFunction, activityFunction);
singleSpa.start();
  1. Create an application. Check out the docs for more detail.
//app1.js

let domEl;

export function bootstrap(props) {
return Promise.resolve().then(() => {
domEl = document.createElement("div");
domEl.id = "app1";
document.body.appendChild(domEl);
});
}

export function mount(props) {
return Promise.resolve().then(() => {
// This is where you would normally use a framework to mount some ui to the dom. See https://single-spa.js.org/docs/ecosystem.html.
domEl.textContent = "App 1 is mounted!";
});
}

export function unmount(props) {
return Promise.resolve().then(() => {
// This is normally where you would tell the framework to unmount the ui from the dom. See https://single-spa.js.org/docs/ecosystem.html
domEl.textContent = "";
});
}

API

Read more at single-spa API and application api.

Contributing

The main purpose of this repository is to continue to evolve single-spa, making it better and easier to use. Development of single-spa, and the single-spa ecosystem happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving single-spa.

Code of Conduct

single-spa has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing Guide

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to single-spa.

Who's Using This?

See user showcase.

Is your company or project using single-spa? Let us know by submitting a PR to this section!