Appendix: Angular
Learn how to set up an Angular development environment on a local machine.
We'll cover the following...
Angular setup
Angular uses a command-line tool known as the Angular CLI to facilitate the
creation of Angular applications and components. The Angular CLI can be installed using npm
as follows:
npm install -g @angular/cli
Here, we install the package @angular/cli
globally using npm
. Once installed, the Angular CLI ...