npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@nhtio/adonis-milicron

v1.20250618.0

Published

A simple cron daemon for AdonisJS

Downloads

167

Readme

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

| Method | Description | Documentation | | -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | | $on | Adds a new cron job to the daemon. Uses EventEmitter.on under the hood | Documentation | | $once | Adds a new cron job to the daemon, but only runs it once. Uses EventEmitter.once under the hood | Documentation | | $off | Removes a cron job from the daemon. Uses EventEmitter.off under the hood | Documentation | | $clear | Removes all callbacks from either a specific crontab or the entire daemon. Uses EventEmitter.removeAllListeners under the hood | Documentation | | start | Starts the daemon if not already started. | Documentation | | stop | Stops the daemon if not already stopped. | Documentation | | restart | Stops and starts the daemon. | Documentation | | crontabMatchesDateTime | Checks if a crontab expression matches a given Luxon DateTime object | Documentation | | getNextRunTimeForCrontab | Calculate the next run time for a crontab expression | Documentation | | getNextRunTimeForParsedCrontab | Calculate the next run time for a parsed crontab expression | Documentation | | getParsedCronExpression | Returns either a Luxon DateTime object or a CronTabObject with the matching configuration. | Documentation |

Instance Properties

| Property | Type | Description | | --------- | ---------------------- | ----------------------------------------------- | | running | readonly boolean | Whether 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