New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@recordset/adonis6-scheduler

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@recordset/adonis6-scheduler

A modern, TypeScript-first scheduler/cron integration for AdonisJS 6.

Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

@recordset/adonis6-scheduler

A modern, TypeScript-first scheduler/cron integration for AdonisJS 6.

🚀 Features

  • make:task command for generating scheduled task classes
  • scheduler:run command for running scheduler workers
  • BaseTask class for clean task organization
  • Flexible cron schedule configuration
  • TypeScript-first, ESM-ready

📦 Installation

  • Install dependencies:
    npm install @recordset/adonis6-scheduler
    
  • Configure:
    node ace configure @recordset/adonis6-scheduler
    
  • Generate jobs with:
    node ace make:task MyTask
    
  • Start the worker:
    node ace scheduler:run
    

🧑‍💻 Example Task

import { BaseTask } from '@recordset/adonis6-scheduler/task'

export default class MyTask extends BaseTask {
    static schedule = '0 0 * * *' // every day at midnight

    async handle() {
        // Task logic here
    }
}

📚 Documentation

  • SETUP.md - Step-by-step setup instructions
  • SUMMARY.md - Package overview and features

📝 License

MIT

Keywords

adonisjs

FAQs

Package last updated on 31 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts