smart-background-job-processor
v1.2.2
Published
A utility library for managing background jobs in Node.js applications using Bull and Redis.
Downloads
8
Maintainers
Readme
Smart Background Job Processor
Smart Background Job Processor is a lightweight, flexible Node.js library for managing background jobs with configurable concurrency. It allows you to queue up tasks to be executed asynchronously, managing multiple tasks in parallel while keeping your application responsive.
Installation
To install the library, run the following command in your Node.js project:
npm install smart-background-job-processor
Usage
First, require the SmartBackgroundJobProcessor
in your project:
const JobProcessor = require('smart-background-job-processor');
Create an instance of the job processor, specifying the desired concurrency level:
const processor = new JobProcessor(2); // Allows up to 2 jobs to run concurrently
Define a job function that returns a promise. For example, a function that simulates a long-running task:
const exampleJob = (x) => new Promise(resolve => setTimeout(() => resolve(x * 2), 1000));
Add jobs to the processor and start it:
async function runJobs() {
processor.start();
const results = await Promise.all([
processor.addJob(exampleJob, 1),
processor.addJob(exampleJob, 2),
processor.addJob(exampleJob, 3),
]);
console.log(results); // Expected output: [2, 4, 6] after approx. 2 seconds
}
runJobs();
Features
- Simple API for adding jobs and managing execution.
- Configurable concurrency level.
- Asynchronous job processing with Promises.
- Event-driven architecture.
Contributing
Contributions are welcome! If you'd like to contribute, please follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Implement your changes.
- Write or adapt tests as needed.
- Submit a pull request with a clear description of your changes.
License
This project is licensed under the MIT License - see the LICENSE file for details.