This repository contains schema, documentation and RFCs for the Frontend Discovery project.
The aim of this project is to define and drive adoption of a frontend discovery pattern, with a primary focus on client-side rendered (CSR), server-side rendered (SSR) and edge-side rendered (ESR) micro-frontends. The frontend discovery pattern improves the development experience when developing, testing, and delivering micro-frontends by making use of a shareable configuration describing the entry point of micro-frontends, as well as additional metadata that can be used to deploy in every environment safely.
There are many client-side rendering frameworks and libraries for building micro-frontends such as Single SPA, Module Federation, Luigi Framework and more. They are all doing a great job composing micro-frontends in a single view (horizontal split) or as standalone artifact loaded by an application shell (vertical split), facilitating the development experience and provide utilities for overcoming common challenges during the development of a micro-frontends application. However, currently none of these frameworks address micro-frontends discoverability. In distributed architectures like micro-services, there are mechanisms to consume a specific service without knowing its endpoint URL. The service discovery pattern allows to associate a unique identifier to a URL that is managed by the service team who manage the service. In this way, the team can change the underline infrastructure and even the service URL, without the need to coordinate with all the consumer of their API. The service team is decoupled from the rest of the consumers and it has the capability to work autonomously reducing the time to market of their implementations.
This is a common challenge for distributed systems on the backend, but so far there isn't an alternative for distributed systems on the frontend. That's the reason why we want to introduce a micro-frontends discovery pattern.
This gap in client-side rendering implementations is a common challenge for every micro-frontends application and every company is solving in different ways: injecting the URL during the CI pipeline, creating browsers extensions for allowing developers to quickly test their micro-frontends autonomously and so on. However, we didn't find a consistent way to look at the problem that is not only enabling to retrieve the entry point of a micro-frontend but also improving the deployment process with mechanisms such as canary release, blue-green deployment or role-based deployment.
The goal of this project is defining a the discoverability schema, and provide examples and foundational libraries in Vanilla JavaScript that can abstract the complexity and be easily integrated with all the most popular micro-frontend frameworks.
The schema covers the following use cases:
This is an example of the latest schema implementation:
{
"schema": "https://mfewg.org/schema/v1-pre.json",
"microFrontends": {
"@my-project/catalog": [
{
"url": "https://static.website.com/my-catalog-1.3.5.js",
"fallbackUrl": "https://alt-cdn.com/my-catalog-1.3.5.js",
"metadata": {
"integrity": "e0d123e5f316bef78bfdf5a008837577",
"version": "1.3.5"
},
"extras": {
"modulefederation": {
"prefetch": ["@my-project/myaccount"]
}
}
}
],
"@my-project/myaccount": [
{
"url": "https://static.website.com/my-account-1.2.2.js",
"fallbackUrl": "https://alt-cdn.com/my-account-1.2.2.js",
"metadata": {
"integrity": "e0d123e5f316bef78bfdf5a008837577",
"version": "1.2.2"
},
"deployment": {
"traffic": 30,
"default": false
}
},
{
"url": "https://static.website.com/my-account-2.0.0.js",
"fallbackUrl": "https://alt-cdn.com/my-account-2.0.0.js",
"metadata": {
"integrity": "e0d123e5f316bef78bfdf5a008837577",
"version": "2.0.0"
},
"deployment": {
"traffic": 70,
"default": true
}
}
]
}
}
An RFC is a document that proposes a change to the project. Request for Comments means a request for discussion and oversight about the future of the project from maintainers, contributors and users.
This team is still defining the best process to work on RFCs. For the time being, everyone can create an RFC proposal about the project, the JSON schema and the roadmap by opening an Issue in Github.
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our vulnerability reporting page. Please do not create a public github issue.
See the LICENSE file for our project's licensing. We will ask you to confirm the licensing of your contribution.
We may ask you to sign a Contributor License Agreement (CLA) for larger changes.