@mayurbhusare/resilient-queue 1.0.0 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @mayurbhusare/resilient-queue
2
2
 
3
+ ![npm version](https://img.shields.io/npm/v/@mayurbhusare/resilient-queue)
4
+ ![license](https://img.shields.io/npm/l/@mayurbhusare/resilient-queue)
5
+ ![downloads](https://img.shields.io/npm/dt/@mayurbhusare/resilient-queue)
6
+ ![node](https://img.shields.io/node/v/@mayurbhusare/resilient-queue)
7
+
8
+
3
9
  Minimal resilient Redis-backed job queue for Node.js.
4
10
 
5
11
  Provides exponential retry, dead-letter queue (DLQ) handling, idempotency guarantees, and graceful shutdown — without heavy frameworks.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mayurbhusare/resilient-queue",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
4
4
  "description": "A lightweight Redis-backed job queue with exponential retry, dead-letter queue support, and idempotency guarantees.",
5
5
  "main": "src/index.js",
6
6
  "type": "commonjs",
@@ -17,15 +17,15 @@
17
17
  "nodejs",
18
18
  "backend"
19
19
  ],
20
- "author": "Mayur Bhusare",
20
+ "author": "Mayur S. Bhusare",
21
21
  "repository": {
22
22
  "type": "git",
23
- "url": "git+https://github.com/mayurbhusare/resilient-queue.git"
23
+ "url": "git+https://github.com/bhusareMayur/resilient-queue.git"
24
24
  },
25
25
  "bugs": {
26
- "url": "https://github.com/mayurbhusare/resilient-queue/issues"
26
+ "url": "https://github.com/bhusareMayur/resilient-queue/issues"
27
27
  },
28
- "homepage": "https://github.com/mayurbhusare/resilient-queue#readme",
28
+ "homepage": "https://github.com/bhusareMayur/resilient-queue#readme",
29
29
  "scripts": {
30
30
  "test": "jest --runInBand"
31
31
  },