Micro-frontends

ESM micro frontends in Modular

Micro frontends are a pattern in which discrete UIs (frontends) are composed of independent fragments that can be built and deployed separately by different teams and loaded on-demand at runtime. Modular gives developers the opportunity to implement micro frontends through ESM Views, which are applications built as ES Modules. ESM Views can be served standalone or dynamically imported by a host application at runtime and rendered in the host application’s own React tree, without the need of using Iframes. ESM Views also allow automatic dependency de-duplication in the browser, thanks to how Modular offloads third-party dependencies to a configurable ESM CDN.

How we build micro frontends

An ESM View can be added to a Modular monorepo via the modular add command, which will set the package’s Modular type to "esm-view" in its package.json.

"modular": {
    "type": "esm-view"
}

This will instruct the modular build command to output an ES Module.

The ESM View’s local dependencies will be bundled in the dist result, while the ESM View’s external dependencies will be rewritten to import from an ESM CDN by default, like (for example) Skypack or esm.sh. This allows the ESM View’s external dependencies to be loaded on-demand at runtime and to be automatically de-duplicated (i.e. the same dependency will be not re-fetched and re-evaluated, but simply re-used if any view tries to use it the second time). This is especially useful in a React micro frontend scenario, where multiple ESM views share the same copy of React, without incurring errors associated with multiple copies of React in the same page.

Since dynamically importing ES Modules leverages a widely supported standard, where the browser does the heavy lifting of fetching, de-duplicating and making dependencies available, ES Modules are Modular’s preferred building blocks to implement a micro frontend architecture.

How to load micro frontends

Building an ESM View generates a single JavaScript entrypoint and a single CSS entrypoint that can be imported at runtime by any application (or other ESM View) using dynamic import (or any viable technique in case of styles). ESM Views will generate a package manifest (package.json file) that contains:

  • Information regarding the location of the built files, whose names are uniquely hashed to facilitate caching
  • Lists of bundled and rewritten dependencies along with their dependencies, in order to decouple importing of ESM Views from the actual build result structure. For more information, visit the ESM Views reference page

Standalone support

As ESM views typically export a React component by default, a synthetic index.html capable of loading the view as a standalone web page is provided in the dist/ directory. This means that ESM views can additionally be served (for example with the modular serve command or any HTTP server) as normal applications, while retaining the ability of loading their dependencies via an ESM CDN.

Customisation

ESM views can be customised by editing the template used to rewrite the external imports and by setting which dependency imports are rewritten to point to a CDN and which are bundled. For more information on how to customise the build of ESM views, visit the ESM Views reference page