nestjs-power-queues 1.0.12 โ 1.0.14
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.
- package/README.md +25 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,11 +4,34 @@ This module is a **dedicated, production-ready NestJS wrapper around `power-queu
|
|
|
4
4
|
|
|
5
5
|
It is a **structured, type-safe, and feature-rich integration** designed specifically to bring all the power of `power-queues` into the NestJS ecosystem with zero friction.
|
|
6
6
|
|
|
7
|
+
<p align="center">
|
|
8
|
+
<img src="https://img.shields.io/badge/redis-streams-red?logo=redis" />
|
|
9
|
+
<img src="https://img.shields.io/badge/nodejs-queue-green?logo=node.js" />
|
|
10
|
+
<img src="https://img.shields.io/badge/typescript-ready-blue?logo=typescript" />
|
|
11
|
+
<img src="https://img.shields.io/badge/license-MIT-lightgrey" />
|
|
12
|
+
<img src="https://img.shields.io/badge/nestjs-support-ea2845?logo=nestjs" />
|
|
13
|
+
<img src="https://img.shields.io/badge/status-production-success" />
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## ๐ Documentation
|
|
19
|
+
|
|
20
|
+
Full documentation is available here:
|
|
21
|
+
๐ **https://nestjs-power-queues.docs.ihor.bielchenko.com**
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
7
25
|
# ๐ฆ Installation
|
|
8
26
|
|
|
9
|
-
```bash
|
|
27
|
+
``` bash
|
|
10
28
|
npm install nestjs-power-queues
|
|
11
29
|
```
|
|
30
|
+
OR
|
|
31
|
+
```bash
|
|
32
|
+
yarn add nestjs-power-queues
|
|
33
|
+
```
|
|
34
|
+
---
|
|
12
35
|
|
|
13
36
|
# ๐งช Quick Start Example
|
|
14
37
|
|
|
@@ -124,7 +147,7 @@ The `runOnInit` parameter determines whether queue processing should start immed
|
|
|
124
147
|
### queueRoot()
|
|
125
148
|
Loads all Redis configurations based on environment variables, applies TLS if present, and sets reconnection strategies.
|
|
126
149
|
|
|
127
|
-
###
|
|
150
|
+
### QueueModule.forRoot()
|
|
128
151
|
Creates dynamic providers for each Redis connection:
|
|
129
152
|
```
|
|
130
153
|
RedisQueue_queues1
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nestjs-power-queues",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.14",
|
|
4
|
+
"description": "High-performance Redis Streams queue integration for NestJS based on power-queues.",
|
|
5
5
|
"author": "ihor-bielchenko",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"@nestjs-labs/nestjs-ioredis": "^11.0.4",
|
|
89
89
|
"@nestjs/common": "^11.1.8",
|
|
90
90
|
"full-utils": "^2.0.5",
|
|
91
|
-
"nestjs-power-redis": "^1.0.
|
|
92
|
-
"power-queues": "^2.0.
|
|
91
|
+
"nestjs-power-redis": "^1.0.9",
|
|
92
|
+
"power-queues": "^2.0.17"
|
|
93
93
|
}
|
|
94
94
|
}
|