As your application grows and becomes more complex, one team alone is not enough to maintain the growth rate, and new people are needed to handle other parts of the application as they appear. At this point, the architecture of your project needs to evolve, and one possibility is to divide your application into several projects that are integrated as one. This practice was born in the world of backend services and appears in the frontend world under the name of micro frontends. In this chapter, we will learn how to apply this principle in an Angular project.
In this chapter, we will cover the following topics:
- Micro frontend – concepts and application
- Slicing your application in the micro frontend
- Creating a micro frontend application with standalone components
- Preparing a page to be loaded by the base application
- Dynamically loading micro frontends
By the end of this chapter, you will be able to assess when it is necessary to use a micro frontend, how to organize your Angular projects, and how to integrate it into a cohesive application.
Technical requirements
To follow the instructions in this chapter, you’ll need the following:
- Visual Studio Code (https://code.visualstudio.com/Download)
- Node.js 18 or higher (https://nodejs.org/en/download/)
The code files for this chapter are available at https://github.com/PacktPublishing/Angular-Design-Patterns-and-Best-Practices/tree/main/ch11.
Before you start reading this chapter, remember to run the backend of the application found in the gym-diary-backend folder with the npm start command.
Micro frontend – concepts and application
In 2014, an article by Martin Fowler and James Lewis (https://martinfowler.com/articles/microservices.html) shook the world of development with the formalization of the concept of microservices. Focused on the development of backend services, the idea of dividing a large system (known as a monolith) into small, independent services focused on just one aspect of the business was undoubtedly a milestone for system architecture.
Not long after, this concept was applied to the frontend world, with one of the main articles written by Cam Jackson (https://martinfowler.com/articles/micro-frontends.html). The basic idea of the micro frontend is the same as its sibling, microservices, which consists of dividing a large frontend project (monolith) into small, independent projects focused on one aspect of the business. However, the concerns are different, of course. In microservices, we worry about databases and communication protocols, whereas on the frontend, we need to worry about packet size, accessibility, and user experience.
Let’s start by analyzing whether you need to use this type of architecture for your project.
No Responses