an opinionated implementation of resque in node
Resque Queue for AdonisJS v6
Coffeescript/Node.js port of Resque
A resque administration website for actionhero
an implementation of resquebus in node
**Distributed delayed jobs in nodejs**. Resque is a background job system backed by [Redis](http://redis.io) (version 2.6.0 and up required). It includes priority queues, plugins, locking, delayed jobs, and more! This project is a very opinionated but API
Redis and Resque admin dashboard plugin for Keryx
Ummon is a Node.js application for queuing, running, and monitoring tasks
Executor plugin for Screwdriver using Resque
Node resque.
Resque support for sails.js v1.0
recursively transform key strings to camel-case
OpenTelemetry B3 propagator provides context propagation for systems that are using the B3 header format
Creates queue worker(s)
Haraka plugin that act as a queue and perform REST post to a remote url
compare two semver version strings, returning -1, 0, or 1
The router for easy microfrontends
A tiny (130B to 205B) and fast utility to randomize unique IDs of fixed length
A library to find JS RegExp with super-linear worst-case time complexity for attack strings that repeat a single character.
Creates a Promise that waits for a single event
A library of cross-platform tested terminal/console command strings for doing things like color and cursor positioning. This is a subset of both ansi and vt100. All control codes included work on both Windows & Unix-like OSes, except where noted.
Boxes for use in the terminal
borderless text tables with alignment
Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible
Integration of resque with resque-progress and resque-lock
A scheduler process to replace cron, using a more flexible Ruby syntax running as a single long-running process. Inspired by rufus-scheduler and resque-scheduler.
Have you ever had a class whose instances required a series of background tasks to run serially, strictly one after another? Than Serially is for you. Declare the tasks using a simple DSL in the order you want them to to run. The tasks for each instance will run inside a separate Resque job, in a queue you specify. The next task will run only if the previous one has finished successfully. All task runs are written to DB and can be inspected.
Provides Resque with three levels of (named) priority for a single queue.
Provides Resque with three levels of (named) priority for a single queue.
A scheduler process to replace cron, using a more flexible Ruby syntax running as a single long-running process. Inspired by rufus-scheduler and resque-scheduler.
By allowing multiple jobs to share a single socket, which is persisted over the life of the worker, this plugin is an important building block for implementing a Resque-based service send background iPhone messages via the Apple Push Notification servers.
A scheduler process to replace cron, using a more flexible Ruby syntax running as a single long-running process. Inspired by rufus-scheduler and resque-scheduler.
a lightweight background processor
Resque allows a single queue to have multiple jobs of the same time. This is because it uses a redis list, which does not have the concept of a unique entry. Sometimes, however, a particular value is only needed if it isn't already on the queue.
Fire and Forget replaces the need to write resque tasks or delayed jobs to fire off web requests (usually notification webhooks or a anti-spam service, like defensio or akismet). A single worker reads and executes web requests from a blocking named pipe, while clients queue up them up in a non blocking manner. It uses typhoeus internally to execute the web requests for maximum speed.