I need to use RabbitMQ to publish and subscribe to queues in Node.js
I already done it in Ruby but I need to do the work in Node.js and I don't find any resource.
Is there any method ? or Library to make it use ?
|
|
|
You can use the AMQP library for node. On github: http://github.com/postwait/node-amqp#readme, and in npm:
|
|||
|
|
You might also want to look at rabbit.js which provides a socket-oriented API for node.js with the rabbitMQ back-end. |
|||
|
|