snub-cron

1.0.2 • Public • Published

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');
});

Readme

Keywords

none

Package Sidebar

Install

npm i snub-cron

Weekly Downloads

5

Version

1.0.2

License

ISC

Unpacked Size

3.48 kB

Total Files

4

Last publish

Collaborators

  • cokeeffekt