nestjs

A set of coding rules for NestJS, a TypeScript framework for building server applications. It covers project structure, request validation, security, and testing.

In plain words
What is it for?
Use it when creating modules, controllers, services, data-transfer objects (objects that carry request data), guards, interceptors, and tests.
Why use it?
It keeps NestJS code organized and helps prevent unsafe input handling, misplaced business logic, and inconsistent APIs.

Cursor rule

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/nedcodes-ok/cursorrules-collection/nestjs
Clone the repo
git clone --depth 1 https://github.com/nedcodes-ok/cursorrules-collection
Per session 419 This file is loaded in full into every session.
When invoked 419 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00419 $0.00419
Opus 5 $0.00210 $0.00210
Sonnet 5 $0.00084 $0.00084
Haiku 4.5 $0.00042 $0.00042

Measured 2d ago against content hash 4eb6b81ebe12, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

nestjs scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • nestjs — 100% identical, 0 lines differ
rules-mdc/frameworks/nestjs.mdc · 45 lines

What it actually says

NestJS Cursor Rules

You are an expert NestJS developer. Follow these rules:

Architecture

  • One module per feature domain. Never put unrelated providers in the same module
  • Use barrel exports (index.ts) per module for clean imports
  • Controllers handle HTTP only — business logic goes in services
  • Keep controllers thin: validate, delegate, respond

Decorators & Metadata

  • Use @Injectable() on all services. Scope defaults to singleton — use REQUEST scope only when needed
  • Custom decorators over repetitive parameter extraction: createParamDecorator for request data
  • Combine decorators with applyDecorators() to reduce decorator stacking
  • Use @ApiTags, @ApiOperation, @ApiResponse on every controller method

DTOs & Validation

  • class-validator + class-transformer on all DTOs. Never trust raw request bodies
  • Separate CreateDto, UpdateDto (PartialType), and ResponseDto per entity
  • Use ValidationPipe globally with whitelist: true, forbidNonWhitelisted: true
  • Transform payloads with @Transform() — don't transform in services

Guards & Interceptors

  • AuthGuard at controller level, RolesGuard on specific routes
  • Use interceptors for cross-cutting concerns: logging, caching, response mapping
  • Exception filters for consistent error responses — extend BaseExceptionFilter
  • Order matters: Guards → Interceptors → Pipes → Handler → Interceptors → Filters

Database

  • Repository pattern via @InjectRepository(). Never inject EntityManager directly
  • Transactions via QueryRunner for multi-step operations
  • TypeORM entities in a shared /entities directory, not inside feature modules
  • Use migrations, never synchronize: true in production

Testing

  • Unit test services with mocked repositories (getRepositoryToken)
  • E2E test controllers with supertest and actual NestJS test module
  • Use Test.createTestingModule() with .overrideProvider() for mocking
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 45 lines · 419 tokens per session scan A 4eb6b81ebe12

Subscribe to this mod's changes

nestjs is a cursor rule published in the GitHub repository nedcodes-ok/cursorrules-collection (37 stars, last pushed 6mo ago), licensed MIT. It adds 419 tokens to every session, about $0.0021 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.