September 2017
Intermediate to advanced
450 pages
11h 24m
English
There are many options available when working with commands in Angular-CLI. For example, let's look at what other options are available for the new command:
ng new --help
This will show you all the available optional flags you can pass when initializing your project.
Now that we have our new Angular project set up, we can start the application locally using the built-in web server capability of Angular-CLI. Start the web server by calling the serve command:
ng serve
After running this command, you can actually see Angular compile all the default modules necessary to run your ...
Read now
Unlock full access