How to Update Angular Version to 14

Updating angular version 10, 11, 12, 13 to 14; Through this tutorial, i am going to show you how to update angular version to14.

How to Update Angular Version to 14

Use the following steps to update angular to version 14; as follows:

  • Run Angular Update Command
  • Add Code In Package.json File
  • Run Angular App

Run Angular Update Command

Open your command prompt and navigate to your angular app directory. Then execute the following command to update angular version 14; as follows:

ng update @angular/core@14 @angular/cli@14

Add Code In Package.json File

Visit to your angular app root directory and find package.json file.

Run Angular App

And then run the following command on terminal to run your angular application; as follows:

ng serve

Related Tutorials

Leave a Comment