0Pricing
Angular Academy · Lesson

Route Guards

Secure routes using guards.

Route Guards is a free Angular Academy lesson on CoddyKit — lesson 2 of 3. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Angular Academy learning path, one of 3 lessons in the course, and your progress syncs across the web and the CoddyKit app.

1

Route Guards in Angular

This lesson explains how to secure routes in Angular applications using route guards.

Route Guards — illustration 1

2

What are Route Guards?

Route guards control access to routes in Angular. They're useful for protecting sensitive or restricted routes.

3

Types of Guards

  • CanActivate: Determines if a route can be activated.
  • CanActivateChild: Guards child routes.
  • CanDeactivate - Checks before leaving a route.
  • Resolve - Pre-fetches data before activating route.

4

Creating a Guard

Create a guard using Angular CLI:

ng generate guard auth

5

Implementing canActivate()

The canActivate() method controls route access:

canActivate(): boolean {
  return true; // or false to block navigation
}

6

Using Guards in Routes

Add guards to routes in your routing module:

{ path: 'admin', component: AdminComponent, canActivate: [AuthGuard] }

7

CanDeactivate Guard

CanDeactivate prevents leaving a route if certain conditions aren't met, useful for forms:

canDeactivate(): boolean {
  return confirm('Do you really want to leave?');
}

8

9

Resolve Guard

The Resolve guard fetches data before a route is loaded:

resolve(route: ActivatedRouteSnapshot) {
  return this.dataService.getData(route.params.id);
}

10

Summary

You learned how to secure and enhance navigation in your Angular apps with route guards. Keep going!

Route Guards — illustration 10

Frequently asked questions

Is the “Route Guards” lesson free?

Yes — the full text of “Route Guards” is free to read here on the web, and the Angular Academy course includes 3 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Angular Academy course, upgrade to CoddyKit PRO.

What will I learn in “Route Guards”?

Secure routes using guards. You practise Angular Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Angular Academy?

No prior experience is required. Angular Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 2 of 3, so you can start here or from the beginning and move at your own pace.

How long does the “Route Guards” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Angular Academy lesson?

Yes. Every Angular Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Configuring Routes
  2. Route Guards
  3. Lazy Loading Modules
← Back to Angular Academy