ItSolutionStuff.com

How to Update Angular 18 to Angular 19 Version?

By Hardik Savani • March 6, 2025
Angular

In this post, I will show you how to upgrade angular 18 to angular 19 version in ubuntu.

While working on my Angular project, I encountered the need to migrate from Angular 18 to Angular 19. Attempting to execute a straightforward update command proved unsuccessful, indicating that certain configurations were impacted. This prompted me to consider alternative methods for upgrading Angular.

There are two approaches to facilitate the transition from Angular 18 to 19. Initially, we'll attempt a direct update of the Angular CLI version. If this proves ineffective, an alternative solution involves uninstalling and reinstalling the Angular CLI, following the provided steps.

Following Way to Upgrade Angular 18 to 19 Version

  • Way 1: Update Angular CLI
  • Way 2: Update Angular CLI using reinstall

Let's see both ways:

Way 1: Update Angular CLI

You can directly upgrade your angular CLI version globally by using the update command of ng. so you can do it by bellow command.

ng update @angular/cli @angular/core

Now you can see ng version by following command:

ng version

Way 2: Update Angular CLI using reinstall

I will show you list of commands for update version angular 18 to angular 19 by using uninstall and upgrade angular version.

Uninstall Angular CLI:

npm uninstall -g @angular/cli

Clear Cache:

npm cache clean --force

npm cache verify

Install Angular CLI:

npm install -g @angular/cli

Now you have a new version of angular CLI. so you can check it by following the command:

ng version

You will see a layout bellow:

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Angular Material Divider Example | Angular mat-divider

Read Now →

Angular Material Card Example | Angular mat-card

Read Now →

Angular Material Badge Example | Angular matBadge

Read Now →

Angular Material Slide Toggle Example

Read Now →

Angular Material Textarea Tutorial

Read Now →

How to Use Bootstrap Tooltip in Angular?

Read Now →

How to use Bootstrap Datepicker in Angular?

Read Now →

How to use Bootstrap Modal in Angular?

Read Now →

Angular Get Active Route URL Example

Read Now →

How to Upload Multiple Images in Angular?

Read Now →

Angular FormGroup Example Tutorial

Read Now →