Blogs and Tutorials for Angular

Angular Components tutorial
Angular components are classes that serve as a controller for the user interfaces using a template. @@Component decorator used to define components.

Angular directives overview with example
This blog explains what is Angular Directives, types of directives like Component, Structural, Attribute and how to use them in your Angular project.

Getting Started with Angular and Visual Studio Code
This blog post will help you to kick off your angular development by setting up Angular application and running it using Visual Studio Code. This will also explain some Angular basics.

Setting up Development Environment for Angular Applications
This blog post explains how to set up your environment for Angular development. It walks you through the installation of all required dependencies and tools like Node.JS, NPM, Angular CLI, and Visual Studio Code to edit angular files.

How to read JSON file data using AngularJS HTTP Get method
In this blog I am going to show you how you can read JSON content from file and display in ASP.NET MVC view

Angular Component Lifecycle
Components are the main building of any Angular application, each component goes through eight different stages of the lifecycle from initialization to destruction. Each stage is called a lifecycle hook event.

Angular Nested Component with Input and Output decorator
This blog helps you to create a nested angular nested component and pass data between parent and child components. For passing data you will use Input() and Output() decorator.