Angular FAQ: Top Questions
36. What is the purpose of Angular CLI?
Angular CLI (Command Line Interface) is a powerful tool that simplifies the development workflow by providing commands to create, build, serve, and test Angular applications.
ng new app-name
: Creates a new Angular application.ng serve
: Compiles and serves the app with live reload.ng generate component/service/module
: Automates code scaffolding.
It promotes best practices and enforces Angular style guidelines.