December 2017
Intermediate to advanced
296 pages
5h 56m
English
From inside the chapter2 folder, open a new command prompt/terminal and run the following:
npm install -g @angular/cli
This will install the Angular CLI generator. If you run ng -v after the installation is done, you should see a version number greater than or equal to 1.0.2.
For the web app, we have already created a base project using Angular CLI and have added the essential pieces to integrate with the API engine. We will clone the project as is and then start working on top of it.
To get started, we need the web app base. ...