October 2018
Beginner to intermediate
478 pages
10h 8m
English
Let's use Angular CLI to create and manage an Angular Everyday Market app.
First, open the Terminal or Command Prompt and install Angular CLI with the following steps:
npm install -g @angular/cli
Using the Terminal, create our Everyday Market project:
ng new everyday-market-ng
The ng new command creates new projects. When executed, it creates the folder with the specified name and scaffolds the entire project using Angular's preferred structure and recommended practices, in addition to installing ...
Read now
Unlock full access