node-quartz

0.2.3 • Public • Published

NodeJs Distributed and resilient job scheduling framework

Installation

It's on NPM.

npm install node-quartz

Usage

 
  var options = {
       scriptsDir : '/my/scripts/path',
       redis : {
            port : null,
            host: null,
            options : {}
       }
  };
 
  var quartz = require('node-quartz');
  
  var job = {
                id: 'job_id',
                script: 'scriptToRun',
                cron: '*/2 * * * *',
                options: {
                    currentDate: null,
                    endDate: null
                },
            };
 
  quartz.scheduleJob(job);
  
 

Requirement

  • Redis 2.8

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.2.3
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.2.3
    1
  • 0.2.2
    0
  • 0.2.1
    0
  • 0.2.0
    0
  • 0.1.0
    0

Package Sidebar

Install

npm i node-quartz

Weekly Downloads

1

Version

0.2.3

License

MIT

Last publish

Collaborators

  • xjodoin