1.20250318.0 • Published 11 months ago

@nhtio/adonis-milicron v1.20250318.0

Weekly downloads
-
License
MIT
Repository
-
Last release
11 months ago

Adonis Milicron

A simple cron daemon for Adonis

Supported cron expressions

Crontab format

  *    *    *    *    *    *    *
  ┬    ┬    ┬    ┬    ┬    ┬    ┬
  │    │    │    │    │    │    |
  │    │    │    │    │    │    └ day of week (0 - 7, 1L - 7L) (0 or 7 is Sun)
  │    │    │    │    │    └───── month (1 - 12)
  │    │    │    │    └────────── day of month (1 - 31, L)
  │    │    │    └─────────────── hour (0 - 23)
  │    │    └──────────────────── minute (0 - 59)
  |    └───────────────────────── second (0 - 59, optional)
  └────────────────────────────── millisecond (0 - 999, optional)*

Important Note: While the millisecond field accepts values of 0-999, the resolution of the cron daemon is limited to 10ms, meaning that the job may trigger up to 10ms before or 10ms after the expressions's defined time.

Additionally, the library also accepts mixed use of ranges and range increments (except for W). The parsing on the cron-parser library, with modifications to allow supporting of milisecond expressions.

Examples

  • * * * * * * * - Every 10ms
  • */2 * * * * * * - Every 10ms (due to the 10ms resolution)
  • */100 * * * * * - Every 100ms
  • 0 * * * * * * - Every second
  • 0 0 * * * * * - Every minute

For more information on the crontab format, see crontab.guru or cronjob.xyz. Note that these don't accept the exact same syntax as this library, as they do not accept the millisecond or seconds fields.

Crontab aliases

  • @yearly - Once a year, at midnight on the morning of January 1st
  • @monthly - Once a month, at midnight on the morning of the first day of the month
  • @weekly - Once a week, at midnight on Sunday morning
  • @daily - Once a day, at midnight
  • @hourly - Once an hour, at the beginning of the hour

Unix Timestamp (seconds)

A unix timestamp in seconds can be used to specify a single time to run the job. Important Note: It is highly recommended to use the $once method with unix timestamps instead of $on in order to clear the callback after the job has run.

Getting Started

Installation

Install the package using your preferred package manager:

npm install @nhtio/adonis-milicron

Run the Adonis configuration command to set up the package:

node ace configure @nhtio/adonis-milicron

Accessing the Cron Daemon

You can access the cron daemon through one of the following methods:

1. As an Importable Service

import cron from '@nhtio/adonis-milicron/services/main';

// Example usage
cron.$on('* * * * *', () => {
  // this runs once per minute
})

2. As an Attribute of the Application

import { default as app } from "@adonisjs/core/services/app";

// Access the event bus
cron.$on('* * * * *', () => {
  // this runs once per minute
})

3. Using Container Services

import { default as app } from "@adonisjs/core/services/app";

// Resolve the event bus from the IoC container
const cron = await app.container.make('cron');
cron.$on('* * * * *', () => {
  // this runs once per minute
})

Using

Instance Methods

MethodDescriptionDocumentation
$onAdds a new cron job to the daemon. Uses EventEmitter.on under the hoodDocumentation
$onceAdds a new cron job to the daemon, but only runs it once. Uses EventEmitter.once under the hoodDocumentation
$offRemoves a cron job from the daemon. Uses EventEmitter.off under the hoodDocumentation
$clearRemoves all callbacks from either a specific crontab or the entire daemon. Uses EventEmitter.removeAllListeners under the hoodDocumentation
startStarts the daemon if not already started.Documentation
stopStops the daemon if not already stopped.Documentation
restartStops and starts the daemon.Documentation
crontabMatchesDateTimeChecks if a crontab expression matches a given Luxon DateTime objectDocumentation
getParsedCronExpressionReturns either a Luxon DateTime object or a CronTabObject with the matching configuration.Documentation

Instance Properties

PropertyTypeDescription
runningreadonly booleanWhether or not the daemon is currently running.

FAQ's

Q: Why is the resolution limited to 10ms? This is mostly a limitation of the setTimeout function which is used to handle the ticks. As noted in MDN's Documentation, most browsers will enforce a minimum timeout of 4ms once a nested call to setTimeout has been scheduled 5 times. Ticks can also be delayed if the OS / browser is busy with other tasks. While there can be cases where 10ms is not sufficient, it is a reasonable compromise between performance and accuracy.

Credits and Acknowledgements

This library leverages the capabilities of the Luxon library for proficient parsing and matching of date and time. The foundation of the cron parsing functionality is built upon the cron-parser library, albeit with custom modifications to accommodate millisecond expressions. The design and functionality of this library owe a significant debt to the inspiration derived from node-cron.


Adonis Milicron is a commercial work product released under the MIT License and is provided as-is with no warranty or guarantee of support.

Copyright © 2025-present New Horizon Technology LTD