2.0.0 • Published 9 years ago

amqp-uri v2.0.0

Weekly downloads
12
License
ISC
Repository
github
Last release
9 years ago

amqp-uri

creates an AMQP URI from a JS object

Build StatusCode Coverage 100%ISC License

info about AMQP URI Specification in here & for URI query parameters in here

PS: because of some Node.js modules changed the name of the query params (amqp.node for example) instead of channel_max is channelMax.

Example

var amqpUri = require('amqp-uri');

var conf = {
    ssl: false,
    host: 'localhost',
    port: 5566,
    vhost: 'some_vhost',
    frameMax: 8192
};

var uri = amqpUri(conf); // amqp://localhost:5566/some_vhost?frameMax=8192
2.0.0

9 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.0

9 years ago

0.0.0

9 years ago