learn-angular
Getting started
Install npm
package manager:
sudo apt install npm
Install Angular CLI using the npm
package manager:
sudo npm install -g @angular/cli
Create a new Angular project (select 'yes' for all the options):
ng new myProject
Start the Angular APP server:
ng serve
And that's it, in just 4 easy steps, we can create a new project.
Reference: https://angular.io/cli#installing-angular-cli
Install VSCode
VSCode fits very well for Angular:
- VSCode has integrated terminals, very useful fro Angular as many components can be created the CLI.