Angular Interview
1. Advantages and Disadvantages in Angular
Advantages
a. SPA
b. Type Script support
c. Angular CLI
d. Dependency Injection
e. RxJS Support
Disadvantages
a. Complex
b. Less community support
2. Current Angular and Node JS version (2021)
Angular 11
Node JS 16 ,14(LTS)
3. Basic Angular CLI command
npm install –g @angular/cli Install Angular CLI
ng new my-first-project Create a Project
ng generate component my-component Create Component
npm start /ng server Run the project
ng build Build the artefact
Ng test Start unit testing
4. Angular Project Structure
5.