rascal 20.1.0 → 20.1.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.
- package/CHANGELOG.md +3 -0
- package/README.md +4 -4
- package/package.json +5 -8
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Rascal
|
|
1
|
+
# Rascal - A RabbitMQ / AMQP Client
|
|
2
2
|
|
|
3
|
-
Rascal is
|
|
3
|
+
Rascal is an advanced RabbitMQ / AMQP client built on [amqplib](https://www.npmjs.com/package/amqplib).
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/rascal)
|
|
6
6
|
[](https://www.npmjs.com/package/rascal)
|
|
@@ -12,7 +12,7 @@ Rascal is a rich pub/sub wrapper around [amqplib](https://www.npmjs.com/package/
|
|
|
12
12
|
|
|
13
13
|
## About
|
|
14
14
|
|
|
15
|
-
Rascal is
|
|
15
|
+
Rascal is an advanced RabbitMQ / AMQP client built on [amqplib](https://www.npmjs.com/package/amqplib). One of the best things about amqplib is that it doesn't make assumptions about how you use it. Another is that it doesn't attempt to abstract away [AMQP Concepts](https://www.rabbitmq.com/tutorials/amqp-concepts.html). As a result the library offers a great deal of control and flexibility, but the onus is on you adopt appropriate patterns and configuration. You need to be aware that:
|
|
16
16
|
|
|
17
17
|
- Messages are not persistent by default and will be lost if your broker restarts
|
|
18
18
|
- Messages that crash your app will be infinitely retried
|
|
@@ -601,7 +601,7 @@ Running automated tests against shared queues and exchanges is problematic. Mess
|
|
|
601
601
|
}
|
|
602
602
|
```
|
|
603
603
|
|
|
604
|
-
If you specify `"namespace" :true` Rascal will prefix the queues and exchanges it creates with a uuid. Alternatively you can specify your own namespace, `"namespace": "foo"`. Namespaces
|
|
604
|
+
If you specify `"namespace" :true` Rascal will prefix the queues and exchanges it creates with a uuid. Alternatively you can specify your own namespace, `"namespace": "foo"`. Namespaces may also be helpful if you want to use a single vhost locally but multiple vhosts in other environments.
|
|
605
605
|
|
|
606
606
|
#### Exchanges
|
|
607
607
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rascal",
|
|
3
|
-
"version": "20.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "20.1.1",
|
|
4
|
+
"description": "An advanced RabbitMQ / AMQP client built on amqplib",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"async": "^3.2.4",
|
|
@@ -47,13 +47,10 @@
|
|
|
47
47
|
"**/*.js": "eslint --fix"
|
|
48
48
|
},
|
|
49
49
|
"keywords": [
|
|
50
|
-
"amqplib",
|
|
51
|
-
"amqp",
|
|
52
50
|
"rabbitmq",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"async"
|
|
51
|
+
"rabbit",
|
|
52
|
+
"amqplib",
|
|
53
|
+
"amqp"
|
|
57
54
|
],
|
|
58
55
|
"repository": {
|
|
59
56
|
"type": "git",
|