typescript
50 lines · 8 steps
Role-based route guards in NestJS
A custom decorator tags routes with required roles and a guard reads that metadata to allow or forbid each request.
Explained by
highlit
1import {
2 CanActivate,
3 ExecutionContext,
4 Injectable,
5 SetMetadata,
6 ForbiddenException,
7} from '@nestjs/common';
8import { Reflector } from '@nestjs/core';
9
10export enum Role {
11 User = 'user',
12 Editor = 'editor',
13 Admin = 'admin',
14}
15
16export const ROLES_KEY = 'roles';
17export const Roles = (...roles: Role[]) => SetMetadata(ROLES_KEY, roles);
18
19@Injectable()
20export class RolesGuard implements CanActivate {
21 constructor(private readonly reflector: Reflector) {}
22
23 canActivate(context: ExecutionContext): boolean {
24 const requiredRoles = this.reflector.getAllAndOverride<Role[]>(ROLES_KEY, [
25 context.getHandler(),
26 context.getClass(),
27 ]);
28
29 if (!requiredRoles || requiredRoles.length === 0) {
30 return true;
31 }
32
33 const { user } = context.switchToHttp().getRequest();
34
35 if (!user) {
36 throw new ForbiddenException('Authentication required');
37 }
38
39 const userRoles: Role[] = user.roles ?? [];
40 const hasRole = requiredRoles.some((role) => userRoles.includes(role));
41
42 if (!hasRole) {
43 throw new ForbiddenException(
44 `Requires one of: ${requiredRoles.join(', ')}`,
45 );
46 }
47
48 return true;
49 }
50}
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1Custom metadata plus a reflector lets you attach declarative rules to routes and read them back at request time.
- 2getAllAndOverride merges handler and class metadata so route-level roles override controller-level defaults.
- 3Returning true for unrestricted routes keeps the guard opt-in rather than locking everything down by default.
Related explainers
typescript
interface ParsedName { first: string; middle: string; last: string;
Parsing human names into structured parts
parsing
string-manipulation
normalization
Intermediate
9 steps
typescript
import { useCallback, useEffect, useRef, useState } from "react"; interface UseResendCooldownOptions { cooldownSeconds?: number;
A resend cooldown hook in React
custom-hooks
timers
state-management
Intermediate
7 steps
typescript
import { Injectable, PipeTransform, ArgumentMetadata,
A custom validation pipe in NestJS
validation
dto
recursion
Intermediate
10 steps
typescript
import { CallHandler, ExecutionContext, Injectable,
Recording HTTP metrics with a NestJS interceptor
interceptor
observability
prometheus
Intermediate
5 steps
python
from typing import Callable, Dict, Type class PluginRegistry:
A decorator-based plugin registry in Python
decorators
registry pattern
factory
Intermediate
9 steps
typescript
import { Component, inject, effect } from '@angular/core'; import { FormControl, ReactiveFormsModule } from '@angular/forms'; import { ActivatedRoute, Router } from '@angular/router'; import { toSignal } from '@angular/core/rxjs-interop';
Debounced search that syncs to the URL in Angular
signals
reactive-forms
debouncing
Advanced
8 steps
Share this explainer
Here's the card — post it anywhere.
Made with highlit — turn any snippet into a walkthrough like this in about a minute.
Explain your code
Embed this explainer
Drop the interactive walkthrough into a blog or docs. Views never cost a credit.
<iframe src="https://highlit.co/explainers/role-based-route-guards-in-nestjs-explained-typescript-5918/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.