NestJS简明教程——安全
登录和注册(代码示例)
需要安装的依赖
pnpm add nestjs/jwt nestjs/throttler helmet auth.service.ts
import {ConflictException,Injectable,UnauthorizedException,
} from nestjs/common;
import { UsersService } from ../users/users.service;
import * as bcrypt from …
2026/8/1 14:48:52