Skip to content

Commit

Permalink
Update metadata and readme because of npm search changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cressie176 committed Dec 5, 2024
1 parent 9fb33da commit 79ddf12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rascal

Rascal is a rich pub/sub wrapper around [amqplib](https://www.npmjs.com/package/amqplib).
Rascal is an advanced RabbitMQ / AMQP client built on [amqplib](https://www.npmjs.com/package/amqplib).

[![NPM version](https://img.shields.io/npm/v/rascal.svg?style=flat-square)](https://www.npmjs.com/package/rascal)
[![NPM downloads](https://img.shields.io/npm/dm/rascal.svg?style=flat-square)](https://www.npmjs.com/package/rascal)
Expand All @@ -12,7 +12,7 @@ Rascal is a rich pub/sub wrapper around [amqplib](https://www.npmjs.com/package/

## About

Rascal is a rich pub/sub wrapper for the excellent [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:
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:

- Messages are not persistent by default and will be lost if your broker restarts
- Messages that crash your app will be infinitely retried
Expand Down
11 changes: 4 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rascal",
"version": "20.1.0",
"description": "A config driven wrapper for amqplib supporting multi-host connections, automatic error recovery, redelivery flood protection, transparent encryption / decryption, channel pooling and publication timeouts",
"description": "An advanced RabbitMQ / AMQP client built on amqplib",
"main": "index.js",
"dependencies": {
"async": "^3.2.4",
Expand Down Expand Up @@ -47,13 +47,10 @@
"**/*.js": "eslint --fix"
},
"keywords": [
"amqplib",
"amqp",
"rabbitmq",
"callback",
"promise",
"await",
"async"
"rabbit",
"amqplib",
"amqp"
],
"repository": {
"type": "git",
Expand Down

0 comments on commit 79ddf12

Please sign in to comment.