Hi,<div>&nbsp; &nbsp; &nbsp; Please provide rabbit.js sample code &nbsp;which is used to create a queue,bind the queue to an exchange that is already present in rabbitmq server,able to provide routing key to an excahnge. I have done this using node-amqp but i am facing issues while doing the same with rabbit.js</div><div><br></div><div>please find below code that is implemented by using node-ampq .I want this code to be translated to rabbit.js</div><div><br></div><div>sample code:</div><div><br></div><div><div>&nbsp;connection.queue('queue_name', {exclusive: true},</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;function(queue){</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; queue.bind('exchange_name','vijay.cr.*');</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; queue.subscribe(function(msg){</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; console.log(" [x] %s", JSON.stringify(msg, null, 2));</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });</div></div><div><br></div><div>Thanks &amp; Regards,</div><div>Vijay.</div>