1.0.2 • Published 4 years ago

snub-cron v1.0.2

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

Snub-CRON

Middleware cron service for snub.

Usage

npm install snub npm install snub-cron

Basic Example

With redis installed and running with default port and no auth.

const Snub = require('snub');
const SnubCron = require('snub-cron');

const snub = new Snub();
const SnubCron = new SnubCron();

snub.use(SnubCron);

// register the cron schedule, you can do this on all instances of snub. no dupe will be emitted for same namespace.
snub.cron('nameOfCron', '0 * * * *');


// when the cron runs it will emit an even to cron:namespace

snub.on('cron:nameOfCron', _ => {
  console.log('Cron ran');
});
1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago