GithubHelp home page GithubHelp logo

tools-alexuser01 / node-amqp-wrapper Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dscape/node-amqp-wrapper

0.0 3.0 0.0 134 KB

A wrapper around https://github.com/squaremo/amqp.node to make consuming and publishing dead easy.

JavaScript 100.00%

node-amqp-wrapper's Introduction

amqp-wrapper

A simple wrapper to https://github.com/squaremo/amqp.node.

Allows you to have any number of publish queues, one consume queue and to perform consume and publish operations.

  • All queues will be declared (made to exist).
  • If you specify a routing key for a publish queue, then a binding will be set up (I.e. a mapping that tells AMQP to route message with that routing key to that queue on the exchange you have specified).
  • Any options you specify at the per-queue level are passed directly through to ch.assertQueue in the underlying library. If you want to set up dead lettering, for example, then pass the deadLetterExchange option which will cause the queue to be declared with that dead letter exchange.
  • deadLetterExchange and deadLetterRoutingKey are special options, in that as well as being passed through to ch.assertQueue() to ensure the dead lettering behaviour occurs, a queue will be declared of the same name with the -dead-letter suffix, with a binding declared on the dead letter exchange for the dead letter routing key. This means that when a message is dead lettered on that queue it will have somewhere to go without you having to set up a dead lettering queue manually.

Example usage

var AMQP = require('amqp-wrapper');

var config = {
  url: process.env.AMQP_URL,
  exchange: process.env.AMQP_EXCHANGE,
  queues: {
    consume: {
      name: process.env.AMQP_CONSUME,
      options: {/* ... */} // options passed to ch.assertQueue() in wrapped lib.
    },
    publish: [
      {
        name: process.env.AMQP_RESPONSE,
        routingKey: process.env.AMQP_RESPONSE_ROUTING_KEY,
        options: {deadLetterExchange: process.env.AMQP_DEAD_LETTER_EXCHANGE}
      },
      { // ...
      }
    ]
  },
  // Set the QOS/prefetch.
  prefetch: 100
};

var amqp = AMQP(config);

// Must call this before you consume/publish/etc...
amqp.connect(amqpConnectDone);

// Consuming
var handleMessage = function(message, callback) {
	//...
};
// You must call:
callback(err, requeue)
// in your handleMessage. If `err` !== `null` then the message will be `nack`ed.
// Requeueing will be requeue iff `requeue` is `true`.
// If `err` is `null` then the message is `ack`ed.
// If an exception occurs in handleMessage, then the message is `nack`ed and not requeued.

// Start consuming:
amqp.consume(handleMessage);

// Publishing to one of the queues declared on connect.
amqp.publishToQueue(name, payload, done);

// Publishing to arbitrary routing key.
amqp.publish(routingKey, payload, options, done);

If payload is an object, it will be turned into JSON.

License

(The MIT License)

Copyright (c) 2014 Noble Samurai

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node-amqp-wrapper's People

Contributors

dscape avatar

Watchers

James Cloos avatar User 01 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.