Node.JS 中的 RabbitMQ 消息传递?
我需要使用 RabbitMQ 在 Node.js 中发布和订阅队列,
我已经在 Ruby 中完成了,但我需要在 Node.js 中完成这项工作,但我没有找到任何资源。
有什么方法吗?或库来使用它?
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 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将 AMQP 库用于节点。在 github 上:http://github.com/postwait/node-amqp#readme,在 npm 中:
You can use the AMQP library for node. On github: http://github.com/postwait/node-amqp#readme, and in npm:
您可能还想查看 rabbit.js它为带有rabbitMQ后端的node.js提供了面向套接字的API。
You might also want to look at rabbit.js which provides a socket-oriented API for node.js with the rabbitMQ back-end.
您可以使用 amqp 库。
rabbitmq官网小教程:amqp hello world node.js example
you can use amqp library.
small tutorial on rabbitmq official website: amqp hello world node.js example