Prerequisites
- Install Node.js (active LTS version) from nodejs.org.
Verify: node --version and npm --version.
Install Angular CLI
npm install -g @angular/cli
On Windows PowerShell: Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned.
Install VS Code
Download from code.visualstudio.com and add Angular Language Service extension.
Create and Run App
ng new my-first-app
cd my-first-app
ng serve --open
App runs at http://localhost:4200. Edit src/app/app.component.html to see hot reload.