cron vs node-schedule vs node-cron vs agenda vs later
Task Scheduling in Node.js Comparison
1 Year
cronnode-schedulenode-cronagendalaterSimilar Packages:
What's Task Scheduling in Node.js?

Task scheduling libraries in Node.js allow developers to execute functions or tasks at specified intervals or times, similar to cron jobs in Unix-like systems. These libraries provide APIs to schedule one-time or recurring tasks, manage their execution, and handle features like time zones, delays, and error handling. They are useful for automating background processes, sending scheduled emails, performing regular data updates, or any task that needs to run at a specific time or interval. Popular task scheduling libraries include node-cron, agenda, node-schedule, later, and cron, each with its own features and use cases.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
cron2,773,3638,597125 kB30a month agoMIT
node-schedule2,089,0309,16135 kB1662 years agoMIT
node-cron1,131,9873,01168.4 kB170a year agoISC
agenda131,3839,466353 kB350-MIT
later24,7332,419-999 years agoMIT
Feature Comparison: cron vs node-schedule vs node-cron vs agenda vs later

Scheduling Method

  • cron:

    cron allows scheduling tasks using cron syntax, providing a simple way to define time-based schedules. It is lightweight and does not require any external storage, making it ideal for quick and simple tasks.

  • node-schedule:

    node-schedule supports both cron syntax and JavaScript Date objects for scheduling tasks. It allows for more complex scheduling scenarios, including one-time and recurring tasks, and provides a flexible API for managing schedules.

  • node-cron:

    node-cron is a simple cron-like scheduler that uses cron syntax to schedule tasks. It is lightweight and easy to integrate, making it suitable for applications that need straightforward scheduling without additional complexity.

  • agenda:

    agenda uses MongoDB to store jobs, allowing for persistent scheduling and reliable execution even if the application restarts. It supports one-time and recurring jobs, with advanced features like job prioritization and failure handling.

  • later:

    later provides a flexible scheduling API that supports complex recurrence patterns, including natural language parsing. It does not execute tasks directly but provides a way to define schedules that can be used with other execution mechanisms.

Persistence

  • cron:

    cron does not provide any persistence mechanism. Scheduled tasks are lost if the application restarts, making it suitable only for temporary scheduling needs.

  • node-schedule:

    node-schedule does not provide built-in persistence. Scheduled tasks are lost if the application crashes or restarts, so external persistence mechanisms must be implemented if needed.

  • node-cron:

    node-cron does not support persistence. Like cron, scheduled tasks are lost on application restart, so it is best for non-critical, temporary tasks.

  • agenda:

    agenda provides built-in persistence by storing jobs in a MongoDB database. This allows jobs to survive application restarts and ensures reliable execution, even in the case of failures.

  • later:

    later does not handle task execution or persistence. It focuses on defining schedules and can be integrated with other systems for execution. Persistence must be managed externally if needed.

Complexity

  • cron:

    cron is simple and straightforward, with minimal setup required. It is easy to use for basic scheduling tasks but lacks advanced features.

  • node-schedule:

    node-schedule strikes a balance between simplicity and complexity, offering a flexible API that supports both cron syntax and Date objects. It is relatively easy to use while providing more features than basic schedulers.

  • node-cron:

    node-cron is simple and easy to use, with a focus on cron-style scheduling. It has a low learning curve and is suitable for quick implementations.

  • agenda:

    agenda is more complex due to its reliance on MongoDB and support for advanced features like job retries, failure handling, and prioritization. It requires more setup but provides greater reliability and flexibility for managing jobs.

  • later:

    later is complex in terms of defining schedules, especially with its support for natural language and advanced recurrence patterns. However, it does not handle execution, which keeps its core functionality simple.

Use Case

  • cron:

    Use cron for simple, time-based tasks like running scripts at specific intervals, sending reminders, or performing maintenance tasks that do not require persistence.

  • node-schedule:

    Use node-schedule for applications that require more flexible scheduling, such as combining cron-style schedules with JavaScript Date objects for one-time and recurring tasks.

  • node-cron:

    Use node-cron for lightweight, cron-style scheduling tasks that need to run at specific times or intervals without the need for persistence or complex features.

  • agenda:

    Use agenda for applications that require reliable job processing, such as sending emails, processing files, or performing background tasks that need to be retried on failure.

  • later:

    Use later for applications that need advanced scheduling capabilities, such as scheduling tasks based on natural language input or complex recurrence patterns.

Ease of Use: Code Examples

  • cron:

    Simple cron job with cron

    const { CronJob } = require('cron');
    const job = new CronJob('*/1 * * * *', () => {
      console.log('Running every minute');
    });
    job.start();
    
  • node-schedule:

    Scheduling with node-schedule

    const schedule = require('node-schedule');
    const date = new Date(Date.now() + 10000); // 10 seconds later
    const job = schedule.scheduleJob(date, () => {
      console.log('Job running after 10 seconds');
    });
    
  • node-cron:

    Simple cron job with node-cron

    const cron = require('node-cron');
    cron.schedule('*/5 * * * *', () => {
      console.log('Running every 5 minutes');
    });
    
  • agenda:

    Simple job scheduling with agenda

    const Agenda = require('agenda');
    const agenda = new Agenda({ db: { address: 'mongodb://localhost:27017/agenda' } });
    
    agenda.define('send email', async job => {
      console.log('Sending email...');
    });
    
    (async function() {
      await agenda.start();
      await agenda.schedule('in 10 seconds', 'send email');
    })();
    
  • later:

    Scheduling with later

    const later = require('later');
    later.date.localTime();
    const schedule = later.parse.text('every 10 seconds');
    later.setInterval(() => {
      console.log('Task running');
    }, schedule);
    
How to Choose: cron vs node-schedule vs node-cron vs agenda vs later
  • cron:

    Choose cron if you need a simple and lightweight library for scheduling tasks using cron syntax. It is best for applications that require straightforward, time-based task execution without additional dependencies.

  • node-schedule:

    Choose node-schedule if you need a feature-rich scheduling library that supports both cron syntax and JavaScript Date objects. It allows for more complex scheduling scenarios and is suitable for applications that require greater flexibility.

  • node-cron:

    Choose node-cron if you want a simple and efficient cron-like scheduler for Node.js. It is lightweight, easy to use, and supports standard cron syntax, making it perfect for quick and simple scheduling tasks.

  • agenda:

    Choose agenda if you need a job scheduler that supports persistent job storage, retries, and complex scheduling. It is ideal for applications that require reliable job processing with MongoDB integration.

  • later:

    Choose later if you need a flexible scheduling library that supports natural language parsing and complex recurrence patterns. It is suitable for applications that require advanced scheduling capabilities beyond standard cron syntax.

README for cron

cron for Node.js logo
cron is a robust tool for running jobs (functions or commands) on schedules defined using the cron syntax.
Perfect for tasks like data backups, notifications, and many more!

Cron for Node.js

Version Monthly Downloads Build Status CodeQL Status Coverage Renovate OpenSSF Scorecard Discord

🌟 Features

  • execute a function whenever your scheduled job triggers
  • execute a job external to the javascript process (like a system command) using child_process
  • use a Date or Luxon DateTime object instead of cron syntax as the trigger for your callback
  • use an additional slot for seconds (leaving it off will default to 0 and match the Unix behavior)

🚀 Installation

npm install cron

Table of Contents

  1. Features
  2. Installation
  3. Migrating from v2 to v3
  4. Basic Usage
  5. Cron Patterns
  6. Gotchas
  7. API
  8. Community
  9. Contributing
  10. Acknowledgements
  11. License

🔄 Migrating from v2 to v3

With the introduction of TypeScript in version 3 and alignment with UNIX cron patterns, a few changes have been made:

Migrating from v2 to v3

Month & day-of-week indexing changes

  • Month Indexing: Changed from 0-11 to 1-12. So you need to increment all numeric months by 1.

  • Day-of-Week Indexing: Support added for 7 as Sunday.

Adjustments in CronJob

  • The constructor no longer accepts an object as its first and only params. Use CronJob.from(argsObject) instead.
  • Callbacks are now called in the order they were registered.
  • nextDates(count?: number) now always returns an array (empty if no argument is provided). Use nextDate() instead for a single date.

Removed methods

  • removed job() method in favor of new CronJob(...args) / CronJob.from(argsObject)

  • removed time() method in favor of new CronTime()

🛠 Basic Usage

import { CronJob } from 'cron';

const job = new CronJob(
	'* * * * * *', // cronTime
	function () {
		console.log('You will see this message every second');
	}, // onTick
	null, // onComplete
	true, // start
	'America/Los_Angeles' // timeZone
);
// job.start() is optional here because of the fourth parameter set to true.
// equivalent job using the "from" static method, providing parameters as an object
const job = CronJob.from({
	cronTime: '* * * * * *',
	onTick: function () {
		console.log('You will see this message every second');
	},
	start: true,
	timeZone: 'America/Los_Angeles'
});

Note: In the first example above, the fourth parameter to CronJob() starts the job automatically. If not provided or set to falsy, you must explicitly start the job using job.start().

For more advanced examples, check the examples directory.

Cron Patterns

Cron patterns are the backbone of this library. Familiarize yourself with the syntax:

- `*` Asterisks: Any value
- `1-3,5` Ranges: Ranges and individual values
- `*/2` Steps: Every two units

Detailed patterns and explanations are available at crontab.org. The examples in the link have five fields, and 1 minute as the finest granularity, but our cron scheduling supports an enhanced format with six fields, allowing for second-level precision. Tools like crontab.guru can help in constructing patterns but remember to account for the seconds field.

Supported Ranges

Here's a quick reference to the UNIX Cron format this library uses, plus an added second field:

field          allowed values
-----          --------------
second         0-59
minute         0-59
hour           0-23
day of month   1-31
month          1-12 (or names, see below)
day of week    0-7 (0 or 7 is Sunday, or use names)

Names can also be used for the 'month' and 'day of week' fields. Use the first three letters of the particular day or month (case does not matter). Ranges and lists of names are allowed.
Examples: "mon,wed,fri", "jan-mar".

Gotchas

  • Both JS Date and Luxon DateTime objects don't guarantee millisecond precision due to computation delays. This module excludes millisecond precision for standard cron syntax but allows execution date specification through JS Date or Luxon DateTime objects. However, specifying a precise future execution time, such as adding a millisecond to the current time, may not always work due to these computation delays. It's observed that delays less than 4-5 ms might lead to inconsistencies. While we could limit all date granularity to seconds, we've chosen to allow greater precision but advise users of potential issues.

  • Using arrow functions for onTick binds them to the parent's this context. As a result, they won't have access to the cronjob's this context. You can read a little more in issue #47 (comment).

API

Standalone Functions

  • sendAt: Indicates when a CronTime will execute (returns a Luxon DateTime object).

    import * as cron from 'cron';
    
    const dt = cron.sendAt('0 0 * * *');
    console.log(`The job would run at: ${dt.toISO()}`);
    
  • timeout: Indicates the number of milliseconds in the future at which a CronTime will execute (returns a number).

    import * as cron from 'cron';
    
    const timeout = cron.timeout('0 0 * * *');
    console.log(`The job would run in ${timeout}ms`);
    

CronJob Class

Constructor

constructor(cronTime, onTick, onComplete, start, timeZone, context, runOnInit, utcOffset, unrefTimeout):

  • cronTime: [REQUIRED] - The time to fire off your job. Can be cron syntax, a JS Date object or a Luxon DateTime object.

  • onTick: [REQUIRED] - Function to execute at the specified time. If an onComplete callback was provided, onTick will receive it as an argument.

  • onComplete: [OPTIONAL] - Invoked when the job is halted with job.stop(). It might also be triggered by onTick post its run.

  • start: [OPTIONAL] - Determines if the job should commence before constructor exit. Default is false.

  • timeZone: [OPTIONAL] - Sets the execution time zone. Default is local time. Check valid formats in the Luxon documentation.

  • context: [OPTIONAL] - Execution context for the onTick method.

  • runOnInit: [OPTIONAL] - Instantly triggers the onTick function post initialization. Default is false.

  • utcOffset: [OPTIONAL] - Specifies time zone offset in minutes. Cannot co-exist with timeZone.

  • unrefTimeout: [OPTIONAL] - Useful for controlling event loop behavior. More details here.

  • waitForCompletion: [OPTIONAL] - If true, no additional instances of the onTick callback function will run until the current onTick callback has completed. Any new scheduled executions that occur while the current callback is running will be skipped entirely. Default is false.

  • errorHandler: [OPTIONAL] - Function to handle any exceptions that occur in the onTick method.

Methods

  • from (static): Create a new CronJob object providing arguments as an object. See argument names and descriptions above.

  • start: Initiates the job.

  • stop: Halts the job.

  • setTime: Modifies the time for the CronJob. Parameter must be a CronTime.

  • lastDate: Provides the last execution date.

  • nextDate: Indicates the subsequent date that will activate an onTick.

  • nextDates(count): Supplies an array of upcoming dates that will initiate an onTick.

  • fireOnTick: Allows modification of the onTick calling behavior.

  • addCallback: Permits addition of onTick callbacks.

Properties

  • isCallbackRunning: [READ-ONLY] Indicates if a callback is currently executing.

    const job = new CronJob('* * * * * *', async () => {
    	console.log(job.isCallbackRunning); // true during callback execution
    	await someAsyncTask();
    	console.log(job.isCallbackRunning); // still true until callback completes
    });
    
    console.log(job.isCallbackRunning); // false
    job.start();
    console.log(job.running); // true (schedule is active)
    console.log(job.isCallbackRunning); // false (no callback executing)
    

CronTime Class

Constructor

constructor(time, zone, utcOffset):

  • time: [REQUIRED] - The time to initiate your job. Accepts cron syntax or a JS Date object.

  • zone: [OPTIONAL] - Equivalent to timeZone from CronJob parameters.

  • utcOffset: [OPTIONAL] - Analogous to utcOffset from CronJob parameters.

🤝 Community

Join the Discord server! Here you can discuss issues and get help in a more casual forum than GitHub.

🌍 Contributing

This project is looking for help! If you're interested in helping with the project, please take a look at our contributing documentation.

🐛 Submitting Bugs/Issues

Please have a look at our contributing documentation, it contains all the information you need to know before submitting an issue.

🙏 Acknowledgements

This is a community effort project. In the truest sense, this project started as an open source project from cron.js and grew into something else. Other people have contributed code, time, and oversight to the project. At this point there are too many to name here so we'll just say thanks.

Special thanks to Hiroki Horiuchi, Lundarl Gholoi and koooge for their work on the DefinitelyTyped typings before they were imported in v2.4.0.

License

MIT