controllers
Installation
SKILL.md
NestJS Controllers
When to Use This Skill
Use this skill when:
- Creating REST API endpoints
- Handling HTTP requests (GET, POST, PUT, DELETE, PATCH)
- Working with route parameters, query parameters, or request bodies
- Setting up routing and path prefixes
- Handling redirects, headers, or status codes
- Working with async/await in route handlers
What are Controllers?
Controllers are responsible for handling incoming requests and returning responses to the client. They use decorators to map routes to handler methods.