Getting Started Angular

Table of Contents

Installing Angular:

npm install -g @angular/cli

Creating project:


ng new my-angular-app

Installing packages and starting project:


npm install

ng serve

Creating components:

ng generate component my-component

This will create my-comopnent.component.ts file

Creating Interface:

ng generate interface housinglocation

Tutorial:

https://angular.dev/tutorials/first-app/