modules
Installation
SKILL.md
NestJS Modules
When to Use This Skill
Use this skill when:
- Organizing application structure into features
- Creating reusable modules
- Configuring module imports and exports
- Creating dynamic modules with runtime configuration
- Setting up global modules
- Understanding module dependency graph
What are Modules?
Modules are classes decorated with @Module() that organize the application structure. Every application has at least one root module, and feature modules organize related functionality.