Internationalization (i18n) is essential for building applications that support multiple languages and regions. Here are some libraries that can help streamline this process. 1. Angular Internationali...
Getting Started with Angular
Angular Material: Styling Material Icons
Angular Material provides a <mat-icon> component to display icons. These icons use the Material Icons font by default. You can find the list of Material Icons here. Icons can be defined as a text n...
Angular Material – A Simple Way to Use Material Icons
Angular Material provides a <mat-icon> component to display icons. These icons use the Material Icons font by default. You can find the list of Material Icons here. Icons can be defined as a text n...
Getting Started With Angular: Cleaning Up the Main Template
When you create an Angular project, you’re greeted with a default template. Cleaning up the main template means removing the default content from the app.component.html file. It’s like cle...
Getting Started With Angular: Creating a Project
Prerequisites Angular CLI Installation When considering Angular installation, you have two options: global and local installation. Global vs local installation The global installation allows you to ac...
Getting Started with Angular: A Free Online Course
This online course is organized into individual articles, each dedicated to the topics of Getting Started with Angular and versions preceding Angular 17.
Getting Started with Angular: Conditional Rendering with ngIf Directive
The structural directive *ngIf is used in combination with <ng-template> to conditionally display content based on the expression. When the expression evaluates to true, the element and its ch...
Getting Started With Angular: Understanding the Basics
Angular is a TypeScript-based open-source web application framework led by the Angular Team at Google. It is primarily used for building single-page web applications and dynamic web pages. Angular app...