April 2017
Beginner to intermediate
378 pages
7h 57m
English
The first thing we are going to do is scaffold an Angular app using the Angular CLI. Create a new folder named chapter1 and open a command prompt/terminal in that folder and run the following:
ng new giphy-app
Now Angular CLI generator will go ahead and create all the files and folders necessary to work with our Angular app.
The scaffolded project structure would look as follows:
. ├── .angular-cli.json ├── .editorconfig ├── README.md ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ ├── tsconfig.e2e.json ...
Read now
Unlock full access