Anthropic Claudeソフトウェア開発⭐ リポ 7品質スコア 59/100
nestjs-guards-interceptors
NestJSのGuardsとInterceptorsを使用して、認証、ロギング、データ変換などの機能を実装します。複数のエンドポイントに共通して適用される横断的関心事(クロスカッティングコンサーン)の実装に活用できます。
description の原文を見る
Use when nestJS guards and interceptors for auth, logging, and transformation. Use when implementing cross-cutting concerns.
SKILL.md 本文
注意: このスキルのライセンスは ライセンス未確認 です。本サイトでは本文プレビューのみを表示しています。利用前に GitHub の原本でライセンス条件をご確認ください。
NestJS Guards and Interceptors
Master NestJS guards and interceptors for implementing authentication, authorization, logging, and request/response transformation.
Guards Fundamentals
Understanding CanActivate and ExecutionContext.
import { Injectable, CanActivate, ExecutionContext } from '@nestjs/common';
import { Observable } from 'rxjs';
@Injectable()
export class BasicGuard implements CanActivate {
canActivate(
context: ExecutionContext,
): boolean | Promise<boolean> | Observable<boolean> {
const request = context.switchToHttp().getRequest();
return t
...
詳細情報
- 作者
- majiayu000
- ライセンス
- 不明
- 最終更新
- 2026/5/9
Source: https://github.com/majiayu000/claude-skill-registry-data / ライセンス: 未指定