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 🙏

© 2025 – Pkg Stats / Ryan Hefner

feathers-agenda

v0.2.0

Published

Agendajs adapter for feathers

Downloads

45

Readme

feathers-agenda

A feathers.js service adapter for agendajs written in Typescript.

npm libraries.io npm GitHub license

Installation

npm i feathers-agenda

Also see:

  • https://feathersjs.com/
  • https://github.com/agenda/agenda

Supported features

  • [x] Agenda instaniation, interaction & configuration
    • [x] instaniation -> constructor initializes an instance and stores it on the service instance
    • [x] configuration -> new AgendaService() or app.configure()
    • [x] interaction -> getAgenda method
    • [x] custom job processors -> AgendaJobDefinition can be provided during setup
  • [x] Support different scheduling types:
    • [x] every() / repeatEvery()

In progress

  • [ ] Implement out-of-the-box job processor ServiceCall for easily scheduling Feathers service calls

Todo (contributions welcome)

  • [ ] Tests
  • [ ] List jobs
  • [ ] Delete jobs
  • [ ] Canceling, disabling and enabling jobs
  • [ ] schedule job type -> support different scheduling types
  • [ ] now job type -> support different scheduling types
  • [ ] handle SIGTERM properly to avoid dead agenda record (e.g. lockedAt is set instead of undefined)
  • [ ] Interact with events
  • [ ] Update to latest @feathers/feathers
  • [ ] Mixin API to comfortably scheduling service calls from within the code base

Usage

For a quick start no further configuration is required. The library will pick the MongoDB url from the Feathers config.mongodb property.

With app.use()

import { AgendaService } from 'feathers-agenda';

app.use("/agendas", new AgendaService({
  // options
}))

app.service("agendas").create({
  name : 'ServiceCall',
  interval : '*/20 * * * * *', // Every 20 seconds
  data: {
    service: '',
    method: 'get',
    data: {
      // The data you want to pass into the job
      // An `_id` for a `get` call or an object for `create` or other methods
    },
    params: {
      // Any Feathers `params` you want to pass in
    }
  }
})

With app.configure()

import { setup } from 'feathers-agenda';

app.configure(setup);

app.service("agendas").create({
  name : 'ServiceCall',
  interval : '*/20 * * * * *', // Every 20 seconds
  data: {
    service: '',
    method: 'get',
    data: {
      // The data you want to pass into the job
      // An `_id` for a `get` call or an object for `create` or other methods
    },
    params: {
      // Any Feathers `params` you want to pass in
    }
  }
})

Custom job definition example

import { FeathersAgendaOptions, setup } from 'feathers-agenda';

// Define the name and the code of a job you want to run periodically / in a scheduled way
app.configure((app) => {
  const customConfigAndJobs: FeathersAgendaOptions = {
    jobDefinitions: [
      {
        name: 'MyJob',
        callback: async (job: any) => {

          // Do anything you want here (like service calls, business logic, etc)
          const { attrs: { _id } } = job;
          const record = await app
            .service('email-sending-service')
            .post(_id);
        }
      }
    ]
  };
  setup(app, customConfigAndJobs);
});

// Actually schedule the job
app.service("agendas").create({
  name : 'MyJob',
  interval : '*/20 * * * * *', // Every 20 seconds
  data: {
    _id: '61e5a5bb06c4d94ddc9cb531'
  }
})

Testing

Simply run npm test and all your tests in the test/ directory will be run. It has full support for Visual Studio Code. You can use the debugger to set breakpoints.

License

Licensed under the MIT license.

Inspiration

Original feathers service template was feathers-messagebird by Frederik Schmatz.