A feathers.js service adapter for agendajs written in Typescript.
npm i feathers-agendaAlso see:
-
Agendainstaniation, interaction & configuration- instaniation ->
constructorinitializes an instance and stores it on the service instance - configuration ->
new AgendaService()orapp.configure() - interaction ->
getAgendamethod - custom job processors ->
AgendaJobDefinitioncan be provided during setup
- instaniation ->
- Support different scheduling types:
-
every()/repeatEvery()
-
- Implement out-of-the-box job processor
ServiceCallfor easily scheduling Feathers service calls
- 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
SIGTERMproperly to avoid dead agenda record (e.g.lockedAtis set instead ofundefined) - Interact with events
- Update to latest
@feathers/feathers - Mixin API to comfortably scheduling service calls from within the code base
For a quick start no further configuration is required. The library will pick the MongoDB url from the Feathers config.mongodb property.
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
}
}
})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
}
}
})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'
}
})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.
Licensed under the MIT license.
Original feathers service template was feathers-messagebird by Frederik Schmatz.