Skip to content

Setting Up the Development Environment (Node.js, npm, Angular CLI)

To develop Angular applications, you need Node.js (which includes npm) and the Angular CLI.

  1. Install Node.js and npm

Download from nodejs.org (LTS version recommended). Verify installation:

Terminal window
node --version
npm --version
  1. Install Angular CLI globally
Terminal window
npm install -g @angular/cli

After installation, verify:

Terminal window
ng version