Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
AMQP-DSL is a fluent interface wrapper for node-amqp and help you write AMQP binding code in a clean and efficient way.
$ npm install amqp-dsl
docs/example-connection
)
amqp = require 'amqp-dsl'
amqp.login(
login: 'user'
password: 'password'
host: 'localhost'
).connect((err, amqp) ->
if err
throw err
return
console.log 'We are connected !'
)
docs/example-simple
)
AmqpDsl = require 'amqp-dsl'
AmqpDsl.login(
login: 'legen'
password: 'dary'
)
.on( 'close', () -> console.error "RabbitMQ connection closed" )
.on( 'error', (err) -> console.error "RabbitMQ error", err )
.on( 'ready', () -> console.log "Connected to RabbitMQ" )
.queue( 'testQueue', (queue) -> console.log "Connected to Queue", queue.name )
.bind( 'stream', '#' )
.bind( 'stream2', 'routing.key' )
.subscribe( (message, header, deliveryInfo) -> )
.queue( 'queue2' )
.bind( 'search', '#.ok' )
.queue( 'queue3', passive:true )
.connect( (err, amqp) ->
if err
throw err
return
# Do other stuff with `amqp` like subscribing to a queue
queue3 = amqp.queues.queue3
queue3.subscribe( ack:true, ( message, header, deliveryInfo ) ->
console.log "Hey ! We got one new message !"
queue3.shift()
)
)
See examples/
and docs/
for more information.
login( options = {} )
on( event, listener )
.exchange( name, options )
.exchange( name, callback(exchange) )
.exchange( name, options, callback(exchange) )
.queue( name, options )
.queue( name, callback(queue) )
.queue( name, options, callback(queue) )
.subscribe( callback(message, header, deliveryInfo) )
.subscribe( options, callback(message, header, deliveryInfo) )
.bind( name, routingKey )
.connect()
.connect( callback(err, amqp) )
.connect( amqp, callback(err, amqp) )
The amqp
argument is simply hashtable with the following properties:
AMQP::queues
)AMQP::Exchange
)AMQP::Connection
)$ cake doc
... and browse docs/
$ npm test
v1.0.3 - Support for .connect() v1.0.2 - Critical bug fix v1.0.1 - .bind & .subscribe can now be called multiple times. This is the behavior that should have been in place since the beginning.
Copyright (c) 2013 Francois-Guillaume Ribreau Licensed under the MIT license.
FAQs
Amqp-DSL - Fluent interface for node-amqp
The npm package amqp-dsl receives a total of 1 weekly downloads. As such, amqp-dsl popularity was classified as not popular.
We found that amqp-dsl demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.