
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
inversify-agenda
Advanced tools
inversify utilities (decorators, etc) to integrate agenda with inversify
https://www.npmjs.com/package/inversify-agenda
Some utilities for the development of agenda workers with Inversify.
You can install inversify-agenda
using npm:
npm i inversify inversify-agenda reflect-metadata --save
The inversify-agenda
type definitions are included in the npm module and require TypeScript 3.
Please refer to the InversifyJS documentation to learn more about the installation process.
First of all you need to be familiar with agenda
All the task will be performed by command classes. It needs to implement AgendaTaskCommand
interface. And will be decorated by @task
.
@task
decorator has 2 parameters, jobName
and array of interval
.
@task('task.sms.searchAndSend', '10 seconds')
export class TasTest implements AgendaTaskCommand {
constructor(
private service: Service // will be injected by inversify
) { }
execute(job: Agenda.Job<Agenda.JobAttributesData>): Promise<void> {
// do it what you want.
// dont need to worry about call done() callback, the result of the job will be the same as the Promise in the response
}
}
You can configure inversify-agenda
using a mongodb connection or passing an instance of Agenda
.
Using mongodb
// or whatever way you have to get your inversify container.
import { container } from './inversify.config';
const agenda = new InversifyAgenda(container, {
db: {
address: process.env.MONGO_URL,
options: {
useNewUrlParser: true
// other options
}
}
}).build();
agenda.start();
Or passing an already created Agenda
instance
// or whatever way you have to get your inversify container.
import { container } from './inversify.config';
const agenda = new Agenda({
db: {
address: this.config.db.address,
collection: this.config.db.collection,
options: this.config.db.options
}
});
const agenda = new InversifyAgenda(container, { agenda }).build();
agenda.start();
@task
decorator to be full compatible with agenda.define
and agenda.every
. Including priority, time zone, concurrency etc.This proyect is widely open to collaborators, please feel free to raise an issue or create a pull request. Any doubt or suggestion you can write to lautarobock@gmail.com
FAQs
inversify utilities (decorators, etc) to integrate agenda with inversify
The npm package inversify-agenda receives a total of 43 weekly downloads. As such, inversify-agenda popularity was classified as not popular.
We found that inversify-agenda 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.