
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
adonis-queue
Advanced tools
A job queuing provider that leverages Bull for the AdonisJS framework.
This library provides an easy way to get started with an asynchronous job queue for AdonisJS.
npm install --save adonis-bull
Register it in bootstrap/app.js:
const providers = [
...
'adonis-queue/providers/QueueProvider'
]
Also consider adding an alias to the provider.
const aliases = {
...
Queue: 'Adonis/Addons/Queue'
}
Register the commands:
const aceProviders = [
...
'adonis-queue/providers/CommandsProvider'
];
...
const commands = [
...
'Adonis/Commands/Queue:Listen'
];
Add a configuration file in config/queue.js. For example:
'use strict';
const Env = use('Env');
module.exports = {
redis: {
connectionString: 'redis://localhost:6379'
}
};
Starting an instance of the queue listener is easy with the included ace command. Simply run ./ace queue:listen.
The provider looks for jobs in the app/Jobs directory of your AdonisJS project and will automatically register a handler for any jobs that it finds.
Jobs are easy to create. They live in app/Jobs and they are a simple class. They expose the following properties:
| Name | Required | Type | Static | Description |
|---|---|---|---|---|
| concurrency | false | number | true | The number of concurrent jobs the handler will accept |
| key | true | string | true | A unique key for this job |
| handle | true | function | false | A function that is called for this job. |
Now that your job listener is running and ready to do some asynchronous work, you can start dispatching jobs.
const queue = use('Queue');
const Job = require('./app/Jobs/Example');
const data = { test: 'data' };
queue.dispatch(Job.key, data);
Special thanks to the creator(s) of AdonisJS for creating such a great framework.
FAQs
Bull provider for the Adonis framework
We found that adonis-queue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.