providers
Installation
SKILL.md
NestJS Providers
When to Use This Skill
Use this skill when:
- Creating services for business logic
- Implementing dependency injection
- Working with repositories or data access layers
- Creating custom providers with factories or values
- Understanding provider scopes and lifecycles
- Injecting dependencies into controllers or other providers
What are Providers?
Providers are classes that can be injected as dependencies. They handle business logic, data access, and can be shared across the application through NestJS's IoC (Inversion of Control) container.