runmq 1.0.0 → 1.0.1

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 +4 -4
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # RunMQ
2
2
 
3
- RunMQ is a robust message queue library for Node.js built on RabbitMQ. Enables async background processing, or event-driven architectures via message bus — both with automatic retries, schema validation and DLQ.
3
+ RunMQ is a reliable message queue library for Node.js built on top of RabbitMQ. Supports async background processing and event-driven messaging for microservices, with automatic retries, schema validation, and DLQ.
4
4
 
5
- RunMQ can be used to implement two main patterns:
6
- - **Event Bus** for event-driven microservices architectures, where multiple services independently react to the same events
7
- - **Job Queue** for async background task processing, with retries and dead letter queues
5
+ RunMQ can be used to implement multiple messaging or jobs processing patterns:
6
+ - **Event Bus** for event-driven architectures, where multiple services independently react to the same events
7
+ - **Job Queue** for async background task processing
8
8
 
9
9
  ## Features
10
10
 
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "runmq",
3
3
  "type": "module",
4
- "version": "1.0.0",
5
- "description": "RunMQ is a robust message queue library for Node.js built on RabbitMQ. Enables async background processing, or event-driven architectures via message bus — both with automatic retries, schema validation and DLQ.",
4
+ "version": "1.0.1",
5
+ "description": "RunMQ is a reliable message queue library for Node.js built on top of RabbitMQ. Supports async background processing and event-driven messaging for microservices, with automatic retries, schema validation, and DLQ.",
6
6
  "keywords": [
7
+ "queues",
8
+ "jobs",
9
+ "message-bus",
7
10
  "rabbitmq",
8
- "message-queue",
9
- "message-broker",
10
- "event-driven",
11
- "task-queue",
12
- "job-queue",
13
- "message-processing"
11
+ "event-driven-architecture",
12
+ "microservices",
13
+ "background-jobs"
14
14
  ],
15
15
  "main": "./dist/index.cjs",
16
16
  "module": "./dist/index.mjs",