0.2.3 • Published 10 years ago

node-quartz v0.2.3

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

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
0.2.3

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago