December 2017
Beginner
372 pages
10h 32m
English
When you are starting to use Angular CLI for the first time , the help command is one of the most useful commands available.
This command provides you with a list of all the options that are available in Angular CLI and their default values as well. The help command is as follows:
ng --help
The result of this command will not fit on a page, so the following is just a snapshot of it:

You will notice the help command listed all the options, such as ng build, ng generate, ng new, ng test, and many more. We will be looking at of all these in this chapter.
We can then even delve into a specific option and look at its help, ...
Read now
Unlock full access