Tool
Cron Expression Tool
For NestJS, node-cron, and GitHub Actions.
Most cron tools are built for Unix and quietly ignore the fact that NestJS uses a 6-field format with seconds. This one doesn't. Switch frameworks and the expression converts automatically. Next runs show in your local timezone so you're not doing the UTC math in your head.
min hr dom month dow
Schedule
Every 5 minutes
Next runs
- 1.Sun, May 3, 4:15:00 PM
- 2.Sun, May 3, 4:20:00 PM
- 3.Sun, May 3, 4:25:00 PM
- 4.Sun, May 3, 4:30:00 PM
- 5.Sun, May 3, 4:35:00 PM
Code snippet
import { schedule } from 'node-cron';
schedule('*/5 * * * *', () => {
// your logic here
});