Skip to content

lykmapipo/kue-common

Repository files navigation

kue-common

Build Status Dependencies Status Coverage Status GitHub License

Commitizen Friendly code style: prettier Code Style npm version

Re-usable helpers for kue.

Requirements

Installation

npm install --save @lykmapipo/kue-common

Usage

  • Job Definition in jobs/email.js
exports.type = 'email';
exports.process = (job, done) => done(null, { success: true });
  • Main Process e.g in index.js
const { dispatch } = require('@lykmapipo/kue-common');
dispatch({ type: 'email', data: { to: 'l@j.z' } });
  • Worker Process(s) in worker.js
const { start } = require('@lykmapipo/kue-common');
start();
  • Environment Variables in .env
KUE_TIMEOUT=5000
KUE_CONCURRENCY=10
KUE_MAX_ATTEMPTS=3
KUE_PRIORITY=normal
KUE_JOB_EVENTS=false
KUE_JOBS_PATH=`${process.cwd()}/jobs`
KUE_REMOVE_ON_COMPLETE=true
KUE_REDIS_URL=redis://127.0.0.1:3000
KUE_HTTP_PORT=5000
KUE_HTTP_USERNAME=kue
KUE_HTTP_PASSWORD=kue
KUE_HTTP_PASSWORD=true
REDIS_URL=redis://127.0.0.1:3000
  • Start Main Process
$ node index.js
  • Start Worker Process
$ node worker.js
  • Heroku Procfile
web: NODE_ENV=production node index.js
worker: NODE_ENV=production node worker.js

Test

  • Clone this repository

  • Install all dependencies

npm install
  • Then run test
npm test

Contribute

It will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.

Licence

The MIT License (MIT)

Copyright (c) lykmapipo & Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.