Home > Software design >  Create new project in Angular 14
Create new project in Angular 14

Time:08-02

How come when I run:

ng new angular-tour-of-heroes

It's Angular 13 installed? I thought Angular 14 was the newest version.

CodePudding user response:

You have to update the global angular cli:

ng update @angular/core @angular/cli

After you have to run:

ng new angular-tour-of-heroes
  1. https://angular.io/start
  2. https://angular.io/tutorial/toh-pt0
  • Related