We touched on many Angular 17 updates so far, and if you want to test those out on a fresh new project, you’ll need to upgrade your Angular CLI to v17.
Here is the most straightforward command to upgrade your global Angular CLI to the latest version:
npm install -g @angular/cli@latest
That’s it! The -g
flag indicates we want to install that CLI globally, and the @latest
at the end ensures we’re getting the latest stable version.