Getting Started Angular
- Atul
- Programming
- July 16, 2024
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