1

Is there any library in node.js that has implemented rabbitmq features comprehensively?
I've used amqplib in our project but it seems it has no feature to list bounded queues.
How can I list those queues in preferably amqplib?

quentino
  • 1,101
  • 1
  • 10
  • 25

1 Answers1

0

I'm not sure whether this is implemented in amqplib or not, but you always have access to the management api, which with a greater chance can satisfy your need

here's what you need

curl -XGET https://user:pass@host/api/exchanges/{vhost}/{exchange_name}/bindings/source

here you can see complete list of features https://cdn.rawgit.com/rabbitmq/rabbitmq-management/v3.8.9/priv/www/api/index.html

Robot
  • 913
  • 6
  • 8