What are the top Angular 19 CLI commands I should memorize for daily use?

Here are the top Angular 19 CLI commands every developer should know since you will likely use them every day. Click here to get your free Angular 19 Cheat Sheet & Study Guide!
- Create a New Project
ng new my-app
- Start the Development Server
ng serve
Alias: ng s
- Build the Project for Production
ng build --prod
Alias: ng b
- Generate a Component
ng generate component component-name
Alias: ng g c component-name
- Generate a Service
ng generate service service-name
Alias: ng g s service-name
- Run Unit Tests
ng test
Alias: ng t
- Lint the Project
ng lint
- Update Angular and Dependencies
ng update
- Add Popular Packages (like Angular Material)
ng add @angular/material
- Run an Angular Schematic (e.g., deployment)
ng deploy
Tip:
Use the –help flag with any command for options and details, e.g.
ng generate component --help
These commands will cover almost all routine operations—project setup, development, generating code, testing, and updating your Angular apps.[2][3][1]