cron vs node-schedule vs node-cron vs bull vs agenda vs later vs bree
Node.js Task Scheduling Libraries Comparison
1 Year
cronnode-schedulenode-cronbullagendalaterbreeSimilar Packages:
What's Node.js Task Scheduling Libraries?

Task scheduling libraries in Node.js are essential for automating repetitive tasks, managing background jobs, and executing code at specific intervals. These libraries provide developers with the tools to schedule tasks efficiently, ensuring that operations such as sending emails, processing data, or cleaning up resources occur at predetermined times or intervals. Each library offers unique features and capabilities, making it important to choose the right one based on project requirements and complexity.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
cron2,913,9838,614131 kB197 days agoMIT
node-schedule2,117,4009,16335 kB1662 years agoMIT
node-cron951,4853,01768.4 kB170a year agoISC
bull911,28815,805309 kB1502 months agoMIT
agenda124,8689,478353 kB350-MIT
later25,3422,419-999 years agoMIT
bree21,6793,11590.5 kB307 months agoMIT
Feature Comparison: cron vs node-schedule vs node-cron vs bull vs agenda vs later vs bree

Storage

  • cron:

    Cron does not provide any storage mechanism; it simply executes tasks based on the defined schedule. This is suitable for applications where persistence is not necessary.

  • node-schedule:

    Node-Schedule allows for in-memory scheduling and does not provide built-in persistence. It is suitable for applications where tasks can be redefined upon restart.

  • node-cron:

    Node-Cron is a simple in-memory scheduler that does not provide job persistence. It is best for lightweight applications where tasks do not need to survive application restarts.

  • bull:

    Bull uses Redis as its storage backend, providing durability and reliability for job processing. It supports job retries and delayed jobs, making it ideal for applications that require robust job management.

  • agenda:

    Agenda stores scheduled jobs in MongoDB, allowing for persistence and easy management of jobs across application restarts. This makes it suitable for long-running applications that need to maintain job states.

  • later:

    Later does not inherently manage job storage; it focuses on defining complex schedules. Users must implement their own storage solution if persistence is required.

  • bree:

    Bree does not require persistent storage, as it uses worker threads to execute jobs in memory. This approach is efficient for short-lived tasks that do not need to be stored between executions.

Concurrency

  • cron:

    Cron runs tasks sequentially based on the defined schedule. It is not designed for concurrent execution, making it suitable for lightweight tasks that do not require parallel processing.

  • node-schedule:

    Node-Schedule can handle multiple scheduled tasks, but it does not provide built-in concurrency management. Users must implement their own concurrency logic if needed.

  • node-cron:

    Node-Cron executes tasks sequentially based on the cron schedule. It is not built for concurrent task execution, making it suitable for simple periodic tasks.

  • bull:

    Bull is designed for high concurrency and can handle thousands of jobs simultaneously. It uses Redis to manage job states and supports multiple worker processes for parallel execution.

  • agenda:

    Agenda processes jobs in a single-threaded manner, which can limit concurrency. However, it allows for job prioritization and can handle multiple jobs if configured properly.

  • later:

    Later allows for scheduling of multiple jobs, but it does not manage concurrency itself. Users need to implement their own concurrency handling if required.

  • bree:

    Bree excels in concurrency by using worker threads, allowing multiple jobs to run simultaneously without blocking the main thread. This is beneficial for CPU-intensive tasks.

Ease of Use

  • cron:

    Cron has a simple syntax for defining schedules, making it easy to use for basic task scheduling. However, it may lack advanced features for more complex scheduling needs.

  • node-schedule:

    Node-Schedule has a user-friendly API that allows for both cron-like and date-based scheduling. It is easy to use for developers needing flexibility in scheduling.

  • node-cron:

    Node-Cron is very easy to use, with a simple API for defining cron jobs. It is ideal for developers looking for a lightweight solution without additional complexity.

  • bull:

    Bull has a more complex API due to its extensive features, but it provides comprehensive documentation. Once familiar, developers can leverage its powerful job management capabilities effectively.

  • agenda:

    Agenda has a straightforward API that is easy to use for developers familiar with MongoDB. Its integration with MongoDB makes it simple to manage jobs through database operations.

  • later:

    Later provides a flexible syntax for defining schedules, but it may require a learning curve for developers unfamiliar with its API. Its power lies in its ability to handle complex schedules.

  • bree:

    Bree offers a clean and modern API that is easy to understand. Its focus on simplicity makes it accessible for developers looking for a quick setup without complex configurations.

Job Management

  • cron:

    Cron does not provide job management features; it simply executes tasks based on the defined schedule. Developers must implement their own management logic if needed.

  • node-schedule:

    Node-Schedule allows for scheduling and cancellation of jobs, providing basic job management capabilities. It is suitable for applications that require flexible scheduling.

  • node-cron:

    Node-Cron does not offer job management features; it executes tasks based on the cron schedule without tracking job states. It is best for simple tasks without management needs.

  • bull:

    Bull offers extensive job management capabilities, including job retries, prioritization, delayed jobs, and event listeners for job completion. It is suitable for applications that require robust job handling.

  • agenda:

    Agenda provides built-in job management features, including job retries, scheduling, and cancellation. It allows developers to easily manage job states and monitor job progress.

  • later:

    Later allows for defining complex schedules but does not provide built-in job management features. Users need to handle job execution and state management manually.

  • bree:

    Bree focuses on simplicity in job management, allowing for easy scheduling and execution of tasks. However, it may lack some advanced job management features found in other libraries.

Use Cases

  • cron:

    Cron is best for simple, periodic tasks such as running maintenance scripts or sending scheduled emails without the need for complex job management.

  • node-schedule:

    Node-Schedule is suitable for applications that require a mix of cron-like and date-based scheduling, such as scheduling events based on user input.

  • node-cron:

    Node-Cron is ideal for lightweight applications that need to run tasks at specific intervals without additional complexity, such as logging or monitoring tasks.

  • bull:

    Bull is perfect for applications that require a robust job queue system, such as e-commerce platforms that need to process orders, send notifications, and handle background tasks efficiently.

  • agenda:

    Agenda is well-suited for applications that require persistent job storage, such as background processing in web applications where jobs need to be retried or tracked over time.

  • later:

    Later is suitable for applications that require complex scheduling scenarios, such as scheduling tasks on specific days or times that are not easily defined with standard intervals.

  • bree:

    Bree is ideal for applications that need to run tasks concurrently without blocking, such as processing multiple files or handling real-time data streams.

How to Choose: cron vs node-schedule vs node-cron vs bull vs agenda vs later vs bree
  • cron:

    Use Cron if you need a straightforward way to schedule tasks using cron syntax. It is perfect for simple use cases where you want to run tasks at specific times or intervals without additional overhead.

  • node-schedule:

    Opt for Node-Schedule if you need a flexible scheduling library that allows for both cron-like and date-based scheduling. It is suitable for applications that require a combination of both approaches.

  • node-cron:

    Select Node-Cron for its lightweight and easy-to-use interface for scheduling tasks using cron syntax. It is ideal for simple applications that require periodic execution of tasks without the need for persistent storage.

  • bull:

    Opt for Bull if you require a robust job and message queue system with Redis support. It is designed for handling large volumes of jobs and provides features like retries, job prioritization, and delayed jobs, making it suitable for complex applications.

  • agenda:

    Choose Agenda if you need a simple and lightweight solution for scheduling jobs in MongoDB. It is ideal for applications that require a job queue with persistent storage and supports recurring jobs easily.

  • later:

    Choose Later for its expressive syntax and flexibility in defining schedules. It is useful for applications that need to handle complex scheduling scenarios beyond simple intervals, such as specific days of the week or month.

  • bree:

    Select Bree for its modern approach to job scheduling with a focus on simplicity and performance. It uses worker threads for concurrency and is suitable for applications that need to run tasks in parallel without blocking the main thread.

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
  4. Basic Usage
  5. Cron Patterns
  6. API
  7. Gotchas
  8. Community
  9. Contributing
  10. Acknowledgements
  11. License

⬆ Migrating

v4 dropped Node v16 and renamed the job.running property:

Migrating from v3 to v4

Dropped Node version

Node v16 is no longer supported. Upgrade your Node installation to Node v18 or above

Property renamed and now read-only

You can no longer set the running property (now isActive). It is read-only. To start or stop a cron job, use job.start() and job.stop().

v3 introduced TypeScript and tighter Unix cron pattern alignment:

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".

📖 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`);
    
  • validateCronExpression: Validates if a given cron expression is valid (returns an object with valid and error properties).

    import * as cron from 'cron';
    
    const validation = cron.validateCronExpression('0 0 * * *');
    console.log(`Is the cron expression valid? ${validation.valid}`);
    if (!validation.valid) {
    	console.error(`Validation error: ${validation.error}`);
    }
    

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

  • isActive: [READ-ONLY] Indicates if a job is active (checking to see if the callback needs to be called).

  • 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.isActive); // true
    console.log(job.isCallbackRunning); // false
    

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.

💢 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).

🤝 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