A Brief Tutorial on Angular

The following article provides A Brief Tutorial on Angular. Topics Covered in this Tutorial on Angular Introduction to Angular and its key features Components and templates Directives and pipes Services and dependency injection RxJS and Observables Routing and navigation Forms and validation HTTP and RESTful APIs Unit testing with Jasmine and Karma Deployment options and best practices. Further Reading Creating […]

Angular 10 Data Binding in Different Ways

Today I talk about Angular 10 Data Binding in Different Ways. Earlier I have discussed components in Angular and how to create them. Meanwhile, the components also require data communication. Accordingly, the data binding specifies how components communicate data with the View. Different Ways of Data Binding As can be seen there are different ways in which we can bind data with […]

Creating Some Angular Components

In this post on Creating Some Angular Components, I will show you how to create components in Angular using a few examples. Basically, an Angular application is built with components where each component is a self-contained unit that we can manage independently. That is why we can modify and replace a component without affecting other parts of the application. Features […]

Creating Single Page Applications with Angular

This article is an introduction to Creating Single Page Applications with Angular. Basically, it is useful for beginners who want to start creating applications in Angular. Here I will discuss the basics of Angular and its versions. Then I will create a simple application that runs on the browser. You will find more details on creating applications with Angular in future posts. […]