IT certification and Exams

The unit tests were also adjusted to consider the component dependencies in the TestBed definition, and you can find the test code in the GitHub repository of this chapter. The last adjustment must be made in the DiaryModule module:@NgModule({  declarations: [    NewEntryFormTemplateComponent,    NewEntryFormReactiveComponent,  ],  imports: [    CommonModule,    DiaryRoutingModule,    RouterModule,    FormsModule,    ReactiveFormsModule,  ],})export class DiaryModule {} As we will dynamically load the components that were converted to […]
The main intention behind the new HTML template flow control syntax was to have a new basis for building new possibilities in the framework’s templates. The first new feature made possible by the syntax is the defer instruction, with which it is possible to lazy load components directly from the HTML template. We learned in […]
Since version 2 of the framework, the HTML template syntax has remained relatively stable and without much evolution. By using custom properties, we can evaluate conditions and iterate over lists and other forms of flow control to create visualization logic in components. The *ngIf, *ngFor, and *ngSwitch directives are used to improve the developer experience, […]
The Angular framework is continually evolving with new features and optimizations, but to help communities and developers keep organized and their applications up to date, the Angular team uses semantic versioning to number their releases. A semantic version number is composed of three parts and each part has the following representation: In this book, we […]
With the Docker image we created, we can run our project on any cloud provider that offers container services. However, there are other ways to deploy our Angular project. One of these alternatives is Azure Static Web Apps, a service that specializes in web page design and allows automatic integration with GitHub. Let’s see it […]
Until this chapter, we have been using the web server included in the Angular package to run our application locally. Although very competent, it focuses purely on the developer’s experience and does not have the performance and scalability capabilities required by the production environment. For this purpose, we use production-grade web servers. One of the […]
The environmental needs of a frontend application running in production are different from the development environment we have seen so far in the book. When we are developing, we look for speed in compilation, powerful debugging, and profiling tools to analyze our code, as well as generating boilerplate code, among other features. Even though it […]
After finishing the task of deploying our backend, we need to change our frontend project to make requests to our cloud infrastructure. But here, a problem arises. We want to access our published backend when we are in production, but the team needs to continue accessing the API locally to develop new features in a […]
Before preparing our gym diary project for production, let’s first upload the backend to a cloud service so that our page has access to the data. We chose the Azure service for this book, but the concepts in this chapter can also be applied to other cloud services, such as AWS (https://aws.amazon.com) and GCP (https://cloud.google.com). […]
Let’s prepare our main application gym diary to consume the micro frontend that we prepared previously. To do this, let’s start by creating a new module in the application. On the command line, we will use the following Angular CLI commands:ng g m exercise –routingng g c exercise/exercise With the preceding commands, we create the […]


Terms of Use | About yeagerback | Privacy Policy | Cookies | Accessibility Help | Contact yeagerback