DD
DevDash

Cron Expression: Every minute (Node.js node-cron)

Cron Expression

* * * * *

Every minute (Node.js node-cron)

Click the expression to select it, then copy.

Quick Answer

The cron expression for "every minute (node.js node-cron)" is `* * * * *`. Copy and paste this into your crontab, Vercel cron config, GitHub Actions workflow, or any standard cron-compatible scheduler.

Field-by-Field Breakdown

FieldValueMeaning
Minute*Every minute
Hour*Every hour
Day of Month*Every day of month
Month*Every month
Day of Week*Every day of week

Common Use Cases

  • Node.js task scheduler
  • In-process cron with node-cron

How to Use This Expression

Vercel Cron Jobs

// vercel.json
{
  "crons": [{
    "path": "/api/your-endpoint",
    "schedule": "* * * * *"
  }]
}

GitHub Actions

# .github/workflows/scheduled.yml
on:
  schedule:
    - cron: '* * * * *'

Linux crontab

* * * * * /path/to/your-command.sh

Frequently Asked Questions

Related Cron Expressions

Want API access + no ads? Pro coming soon.