task-scheduling
Installation
SKILL.md
NestJS Task Scheduling
When to Use This Skill
Use this skill when:
- Running tasks at specific times (cron jobs)
- Executing periodic tasks (intervals)
- Scheduling delayed tasks (timeouts)
- Implementing background jobs
- Creating scheduled reports or backups
- Cleaning up expired data
- Sending scheduled notifications
- Dynamically managing scheduled tasks
What is Task Scheduling?
The @nestjs/schedule module allows you to schedule arbitrary code (methods/functions) to execute at fixed dates/times, recurring intervals, or after specified intervals. It integrates with the popular node-cron package.