GithubHelp home page GithubHelp logo

bitflower / feathers-agenda Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 778 KB

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

License: MIT License

TypeScript 100.00%
typescript nodejs feathersjs agendajs scheduler job-scheduler expressjs

feathers-agenda's Introduction

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:

Supported features

  • Agenda instaniation, interaction & configuration
    • instaniation -> constructor initializes an instance and stores it on the service instance
    • configuration -> new AgendaService() or app.configure()
    • interaction -> getAgenda method
    • custom job processors -> AgendaJobDefinition can be provided during setup
  • Support different scheduling types:
    • 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.

feathers-agenda's People

Contributors

bitflower avatar miguelrk avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.