0.0.1-rc.20 • Published 3 years ago
redeez v0.0.1-rc.20
A simplified general-purpose queueing system for node apps.
Table of Contents
Installation
Using npm:
npm install redeez redisor if you prefer to use the yarn package manager:
yarn add redeez redisor if you prefer to use the pnpm package manager:
pnpm add redeez redisDocumentation
Handling Tasks
import { handleTasks } from 'redeez';
// Do your pre-configuration here, connect to your favourite database etc.
const redis = new RedisClient();
// And handle tasks
handleTasks(redis, {
resizeAvatar: {
queue: 'avatars:resize',
handler: async ({ avatar }) => {
// Your code here
},
},
resizeImage: {
queue: 'images:resize',
handler: async ({ image }) => {
// Your code here
},
},
});Contributors
LICENSE
This package is licensed under the GNU Lesser General Public License.
0.0.1-rc.20
3 years ago
1.0.0
3 years ago