Angular / Angular basics
What is angular CLI?
Angular CLI is a command line interface to scaffold and build angular apps. It provides a scalable project structure and also handles most of the task in building the application.
Angular CLI comes with a handful of commands to set up and build your project from scratch. Below are few commands.
ng new "path_to_project"
will create a new project by installing required dependencies.
ng serve
builds your project and also it runs the project on the local server.
ng help
provides the list of ng commands for reference.
More Related questions...