node-amqp
node-amqp copied to clipboard
[UNMAINTAINED] node-amqp is an AMQP client for nodejs
Y
https://www.ietf.org/rfc/rfc4287.txt
S
Dear all, I am currently developing a distributed application and I was thinking on using RabbitMQ in my server to handle all the communications. I have one web interface developed...
https://github.com/postwait/node-amqp/issues/459 add "heartbeat_fail" callback(in connection.js)
Hello, I have code which rapidly publishes data to an exchange. After a number of publishes, I'm getting an error indicating a memory leak inside the amqp library, ```(node) warning:...
Can you please let me know how to configure the rabbitmq fail over server . I have 3 rabbit server. I should able to configure that way if one of...
var amqp = require('amqp') var connection = amqp.createConnection({ host:'127.0.0.1', post:5672, login:'test', password: '123', vhost: '/test' }) connection.on('error',function(err){ console.log('connection err : '+err); }) var queName = 'test_q3',exname='test_ex'; connection.on('ready',function(){ var ex =...
Hello, when I tried prepare simple publish procedure, callback after publishing message is never executed. var amqp = require('amqp') var connection = amqp.createConnection({ host: 'localhost', port: 5672 }) // add...
@postwait What is going on with node-amqp? Why is it now un-maintained?
Have installed rabbitmq-server and installed this package. While running tests for this package using command **npm test** facing ECONNRESET error. Facing below issue in debian, nodejs v10.8 and RabbitMQ 3.3.5....