What is the Angular CLI, and how do you use it to create Angular applications?
- The Angular CLI (Command Line Interface) is a tool to generate, build, test, and
maintain Angular apps efficiently.
- It automates repetitive tasks and enforces best practices.
- You can create a new Angular app with:
ng new my-angular-app
- This command scaffolds a complete Angular project with all necessary files and
configurations.