Learning Angular
February 20, 2021 • ☕️ 1 min read
Getting started with Angular
An excellent place to start is to go through the official tutorial. This gives you an overview of Angular concepts, tools, and terminology.
Angular programs are written in Typescript. The TypeScript Handbook will come in handy whether you are a new or experienced programmer.
Going deeper into Angular
After going through the official tutorial, it is good to get a deeper understanding of Angular concepts.
An important concept is the lifecycle of Components. Angular’s built-in directives can be very nifty.
Dependency Injection is required for anything non-trivial in Angular.
Observables are used extensively within Angular, for event handling, asynchronous programming, etc. RxJS provides an implementation of the Observable
type.