Skip to content

Latest commit

 

History

History
34 lines (34 loc) · 1.24 KB

File metadata and controls

34 lines (34 loc) · 1.24 KB

Installation an Angular Specific Version

Before Installation

  1. Install nvm for Windows to use multiple nodejs versions

    1. Download from: NVM GitHub
    2. For installing and running Node.js version 18
      1. Run: nvm install 18
      2. Run: nvm use 18
  2. Cleaning Angular Global Version Already Installed

    1. Run: npm uninstall -g @angular/cli
    2. Run: npm cache clean --force

Using Angular Version 13.3.0 as the specific version

As a global installation

  1. Run: npm install -g @angular/cli@13.3.0
  2. Run: ng new older-version-app

As a local installation

  1. cd to the folder where you will install the local Angular version
  2. Run: npm install @angular/cli@13.3.0
  3. Run: npx ng new older-version-app