DEV Community

Cover image for Angular Authentication: Upgrade to Angular 18 πŸš€
Nikos Anifantis
Nikos Anifantis

Posted on

Angular Authentication: Upgrade to Angular 18 πŸš€

Cover Photo by Gareth Davies on Unsplash.

An Angular application that demonstrates best practices for user authentication flow.

By @nikosanif

GitHub logo nikosanif / angular-authentication

An Angular application that demonstrates best practices for user authentication & authorization flows.

Angular Authentication

An Angular application that demonstrates best practices for user authentication & authorization flows.

By @nikosanif

license Netlify Status code style: prettier X Follow

Table of Contents

Live Demo

Live application: angular-authentication.netlify.app

Angular Authentication Demo

Getting Started

Prerequisites

Setup & Usage

  • Clone this repository: git clone git@github.com:nikosanif/angular-authentication.git
  • cd angular-authentication
  • Install dependencies: npm install
  • Serve the Angular app: npm start
  • Open your browser at: http://localhost:4200

Useful Commands

  • npm start - starts a dev server of Angular app
  • npm run build:prod - builds full prod build
  • npm run lint - linting source code of this project
  • npm run format:check - runs prettier to check for formatting errors
  • npm run format:write - runs prettier to format whole code base
  • npm run release - runs release-it to create new release

Features

Authentication Flows

Angular Authentication Demo Angular Authentication Demo

Other Features

  • Lazy loading of Angular modules
  • API requests with @ngrx/effects
  • Responsive design
  • Custom In-memory Web…

The Challenge πŸ€”

Three years ago, I created an open-source project called Angular Authentication to demonstrate authentication and authorization in Angular applications. The project was built with Angular 13 and featured user authentication & authorization flows, protected routes, etc. However, as Angular has evolved, new versions have been released with performance improvements, new features, and enhanced security. To keep the project up to date and leverage the latest advancements, I decided to upgrade it from Angular 13 to Angular 18.

Upgrading an Angular project can seem overwhelming, especially when spanning several major versions. However, the power of Angular CLI (ng update), the benefits of performance enhancements, new features, and improved security are well worth the effort. In this article, I'll walk you through the process I followed to upgrade an Angular auth open-source project from Angular 13 to Angular 18. We'll cover dependency updates, the adoption of new Angular features, and UI component migration.

TL;DR 🎯

  • βœ… Angular Version: 13 ➑️ 18
  • βœ… Dependencies: Update dependencies to the latest versions.
  • βœ… UI Migration: Try new Angular Material Design Components (Material 3).
  • βœ… Release Management: Migrate to release-it for versioning and changelog generation.
  • βœ… Features: Adopt new Angular 18 features.
  • βœ… Built-in Control Flow: Migrate to the new control flow syntax.
  • βœ… Standalone Components: Utilize standalone components for modularity.
  • βœ… Route Guards: Refactor route guards to functions.
  • βœ… Typed forms: Use typed forms for improved type safety.
  • πŸ•£ Use Signal APIs: Try migrating to the new signal inputs, signal-based queries, and a new output syntax.
  • πŸ•£ Zoneless change detection: Remove zone.js as dependency.
  • πŸ•£ Deferrable views: Use the new shiny feature for deferrable views.

Step-by-Step Upgrade Process πŸš€

Initial Setup

[Step.1] ⏩ Visit the Angular Update Guide:

[Step.2] ⏩ Install Dependencies for Node 16:

npm install
Enter fullscreen mode Exit fullscreen mode

[Step.3] ⏩ Switch to Node 18: I used Node Version Manager (nvm) to switch to Node 18.

nvm use 18
Enter fullscreen mode Exit fullscreen mode

Incremental Angular Updates

[Step.4] ⏩ Update to Angular 14:

ng update @angular/core@14 @angular/cli@14 --force
Enter fullscreen mode Exit fullscreen mode
  • The --force flag bypasses version compatibility checks. We'll manually fix issues later.

[Step.5] ⏩ Sequential Updates:

ng update @angular/core@15 @angular/cli@15 --force
ng update @angular/core@16 @angular/cli@16 --force
ng update @angular/core@17 @angular/cli@17 --force
Enter fullscreen mode Exit fullscreen mode

[Step.6] ⏩ Switch to Node 20:

nvm use 20
Enter fullscreen mode Exit fullscreen mode

[Step.7] ⏩ Update to the Latest Angular Version (v18):

ng update @angular/core@latest @angular/cli@latest --force
Enter fullscreen mode Exit fullscreen mode

Adjustments and Comparisons

[Step.8] ⏩ Create a New Angular Project for Comparison:

  • Generate a new Angular project with the latest version to compare configurations and identify necessary adjustments.
ng new new-angular-project
Enter fullscreen mode Exit fullscreen mode

[Step.9] ⏩ Update Dev Dependencies:

  • Update all packages to their latest versions.
  • Fix any eslint issues.
  • Test all commands in package.json to ensure compatibility.

Final Angular Update

[Step.10] ⏩ Enforce Node Version 20:

  • Update the engines field in package.json to ensure Node 20.x is used.
"engines": {
  "node": "20.x"
}
Enter fullscreen mode Exit fullscreen mode

[Step.11] ⏩ Isolate features and components:

  • Isolate features and start migrating them one by one to Angular 18. This approach helps to identify issues and fix them incrementally. - Use Angular CLI schematics to generate new components and services with the latest Angular 18 features. For example:
ng g @angular/core:control-flow # Migration to the new control flow
Enter fullscreen mode Exit fullscreen mode

UI and Dependency Migrations

[Step.12] ⏩ Migrate UI from TaigaUI to Angular MDC:

  • Transition to Angular Material Design Components (MDC). Although TaigaUI is a great library, the new Material 3 components are now stable and I decided to try them.
  • Replace TaigaUI components with MDC counterparts.

[Step.13] ⏩ Remove Deprecated Dependencies:

  • Remove angular-in-memory-web-api and update the project to use alternative data mocking solutions or real backend services.
  • Implement a custom HTTP interceptor to handle API requests and responses.

[Step.14] ⏩ Adopt Standalone Components:

  • Utilize Angular's standalone components feature to simplify module management and improve code modularity.
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';

@Component({
  selector: 'app-standalone',
  standalone: true,
  imports: [CommonModule],
  templateUrl: './standalone.component.html',
  styleUrls: ['./standalone.component.css'],
})
export class StandaloneComponent {}
Enter fullscreen mode Exit fullscreen mode

[Step.15] ⏩ Use the new Built-in control flow:

  • Use the new built-in control flow features introduced in Angular 18 to simplify asynchronous operations and improve code readability. More specifically, use the @if keyword instead of ngIf and @for instead of ngFor.

[Step.16] ⏩ Refactor guards to functions:

  • Refactor route guards to functions to simplify the code and improve maintainability.
export const canActivate = (
  route: ActivatedRouteSnapshot,
  state: RouterStateSnapshot
) => {
  // Guard logic
};
Enter fullscreen mode Exit fullscreen mode

[Step.17] ⏩ Typed Forms:

  • Use typed forms to improve type safety and reduce errors in form handling.
loginForm = new FormGroup({
  username: new FormControl(/* ... */),
  password: new FormControl(/* ... */),
});
Enter fullscreen mode Exit fullscreen mode

Other Enhancements

[Step.18] ⏩ Migrate Releases to release-it:

  • Since the project standard-version is deprecated, I decided to migrate to release-it for versioning and changelog generation.
  • Simplify the release process with release-it, which automates versioning and changelog generation.
npm install --save-dev release-it
Enter fullscreen mode Exit fullscreen mode
  • Configure release-it with a .release-it.json file:
{
  "git": {
    "commitMessage": "chore(release): ${version}",
    "requireBranch": ["main"]
  }
  // ... other configurations
}
Enter fullscreen mode Exit fullscreen mode

Future Enhancements πŸ’‘

  • Adopt more new Angular Features: Explore new features and improvements introduced in Angular 18, such as enhanced performance, updated APIs, and improved tooling.
  • Use Standalone Components: Remove all @NgModule declarations from components and use standalone components for better modularity.
  • Zoneless change detection: Consider migrating to zoneless Angular to improve performance and reduce overhead.
  • Use Signal APIs: Explore the new Signal APIs introduced in Angular 18 to simplify asynchronous operations.
  • Deferrable views: Implement deferrable views to improve rendering performance and user experience.

Conclusion βœ…

Upgrading an Angular project from version 13 to 18 involves multiple steps, including updating dependencies, fixing issues, and adopting new features. By following this structured approach, you can ensure a smooth upgrade path and leverage the latest advancements in Angular.

If you found this article helpful, please support it with your ❀️ πŸ¦„ πŸ”– to help it reach a wider audience. πŸ™

Feel free to reach out if you have any questionsβ€”leave your comments below or DM me on X @nikosanif or LinkedIn.

Top comments (0)