Skip to content

awslabs/frontend-discovery-service

Frontend Service Discovery on AWS

Frontend Service Discovery on AWS is a solution to handle frontend releases on AWS using the frontend discovery pattern, a system designed by the micro-frontends community with flexibility, portability and security in mind to improve operations.

🐦 Deploy micro-frontends using canary releases to improve availability and operations

🗄️ Organise and manage micro-frontends into multiple projects to handle multi-environment testing and ephemeral releases

🛠️ Integrate with the CI/CD tooling of your choice and use the REST API to list micro-frontends, publish new versions, start a deployment or roll-back

🧰 Consume the manifest with the technology of your choice to perform client-side or server-side rendering

🔒 Securely configure cross-origin resource sharing and user bucketing strategy

Summary

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 is used for safe deployments in each environment using Canary Releases. Modern frontend development consists of using a wide variety of tools and libraries to allow modularity during development, coupled with complex systems that optimise code to run in production with performance and robustness in mind. Traditionally, this process consisted of bundling code into individual files that could be hosted in a CDN with the goal of reducing network calls at minimum during run-time, both during initial load (when an app opens in a browser) and during usage (when a customer starts using the app performing actions such as clicking buttons, inserting information, and more).

One of the challenges that micro-frontends architectures solve is the problem of having very large bundles that originate from individually bundling a large set of functionalities resulting in performance issues. For instance, a very large e-commerce website could be bundled into a 6MB JavaScript file, that despite compression may still negatively impact the user when loading the app and downloading the file from an Edge optimised CDN. But if we split the app into Home page, product details, and booking flow micro-frontends, for example, and then we use a bundling mechanism to produce three individual 2MB bundles, we may improve the performance for first load by 300% when users consume the home page, and load the product or booking micro-frontends bundles asynchronously only if and when the user wishes to visit the product page for an item, and decides to purchase it. Many frameworks and libraries are available today to offer solutions based on this approach, and there are advantages not only for end-users, but for developers too. In fact, when identifying business boundaries that can result in decoupling of dependencies in code, different business functions can be mapped to multiple teams, introducing independence and agility by distributing ownership.

When we have split build packages, we can use a configuration to map micro-frontends and drive the orchestration for initial load and post-load navigation. Then, it is possible to consume the configuration during run-time rather than build-time. This project allows the frontend code (in case of client-side rendering) or backend code (in case of server-side rendering) to make an initial network call to the Consumer API to dynamically fetch the list of micro-frontends, as well as their metadata needed for composition and integration. Of course fail-over strategies can be configured to offer robustness and caching can be configured to guarantee performance. With this approach, we allow individual deployments of micro-frontends to be discoverable by other previously deployed micro-frontends orchestrated by a shell app.

Canary releases are a well-established pattern very popular when deploying micro-services. They consist on bucketing the target users of a release into multiple groups, and releasing a new change gradually as opposed to a immediate replacement (also known as Blue/Green deployment). An example of a canary release strategy is to roll a new change starting from 10% of the target users, and add 10% every minute, with a total duration of 9 minutes to reach 100%. The goal with this approach is to have early feedback about the new changes, and allow the monitoring of a system to reduce the impact in case of issues. When automation is in place, some business or system metrics can be monitored and integrated to an internal system that can stop the deployment and/or start a roll-back. For instance, a new change may introduce a bug that in the first couple of minutes of a release could result in a loss of revenue or a performance degradation that can be monitored automatically and trigger an alarm. With this solution, that alarm can be hooked to the Admin API to stop the deployment and immediately roll-back, with the result of having impacted only 20% of the users rather than 100%, and having a positive impact on the business by reducing the scope of an issue.

How it works

Frontend Service Discovery on AWS is a solution to setup an Admin API to be used by individuals or automation during releases of new micro-frontends, and a Consumer API (automatically replicated to AWS Edge locations) to be integrated to applications. The built-in mechanism to bucket users during deployments is based on a cookie value that can identify and group users consuming the Consumer API. The logic to identify users and assign them to groups is customisable to allow integration with existing systems.

The solution is designed to be unopinionated in terms of micro-frontends approaches. When registering a micro-frontend to the Admin API, it is possible to attach arbitrary metadata so that systems that will perform orchestration will have the data they need for integration (for instance, download necessary resources available as separate JavaScript bundles) and composition (for instance, setup asynchronous fetching of resources needed when a user clicks a button that requires fetching new resources bundled separately). See the examples folder to see some tutorials for how to integrate with popular open-source frameworks.

The solution is also designed to allow multiple projects containing micro-frontends, making it easy to setup multi-environment testing (for instance, setting up a production environment where to pre-publish micro-frontends to be consumed by authenticated users for automated and manual tests before a release), and ephimeral releases (for instance, setting up a test environment containing a project that can be used to publish any change during local development and test integration with multiple micro-frontends).

Should I do micro-frontends?

While this project focuses on micro-frontend architectures and related tools and approaches, this project and its attached documentation are not an endorsement to micro-frontend architectures, nor they attempt to contribute to the hard mission of explaining their advantages as well as their disadvantages, and dive deep into the topic. If you are new to complex front-end architectures and micro-frontends, we recommend to learn about it first.

Architecture

Architecture Diagram

Installation

The solution is available as an AWS CloudFormation template and should take about 5 minutes to deploy. See the deployment guide for one-click deployment instructions, and the cost overview guide to learn about costs.

Usage

The solution provides a REST Admin API to allow you to integrate it in your own CI/CD pipelines, a well as a REST Consumer API to allow you to integrate the solution with your front-end applications.

See the user guide to learn how to use the solution and the API specification to integrate the solution with your own applications. See the examples to see some examples on how to integrate the Consumer API with your front-end application.

Documentation

Public Material

Contributing

Contributions are more than welcome. Please read the code of conduct and the contributing guidelines.

License Summary

This project is licensed under the Apache-2.0 License.

About

Frontend Service Discovery on AWS is a solution to handle frontend releases on AWS using the frontend discovery pattern.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks