⚒️ Installing Angular CLI
We will install the Angular CLI globally. This means once the command installs successfully, you will have a new command (ng
) on your path. The ng
command is the entry-point to the Angular CLI.
⚒️ Go to a shell and run the following command. This is a global command, so it doesn't matter what directory you are in.
npm i -g @angular/cli
This is A Prototype
In later sections, we will use an Nx Workspace as a way to manage our Angular application. It uses some of the features of the Angular CLI behind the scenes, so knowing a bit about it is helpful.