Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jackrabbit

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jackrabbit

Simple AMQP / RabbitMQ job queues for node

  • 3.0.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.3K
decreased by-64.17%
Maintainers
1
Weekly downloads
 
Created
Source

Jackrabbit

Simple AMQP / RabbitMQ job queues for node

var queue = jackrabbit('amqp://localhost');

queue.on('connected', function() {
  queue.create('jobs.greet', { prefetch: 5 }, onReady);

  function onReady() {
    queue.handle('jobs.greet', onJob);
    queue.publish('jobs.greet', { name: 'Hunter' });
  }

  function onJob(job, ack) {
    console.log('Hello, ' + job.name);
    ack();
  }
});

Installation

npm install --save jackrabbit
var jackrabbit = require('jackrabbit');

Use

First, create a queue and connect to an amqp server:

var queue = jackrabbit(amqp_url, prefetch)
  • amqp_url: eg, 'amqp://localhost'
  • prefetch: messages to prefetch (default = 1)
create

Create (or assert) a queue.

queue.create(name, options, callback)
  • name: name of the queue (eg, 'jobs.scrape')
  • options: object with...
    • durable (Boolean, default = true)
    • prefetch (Number, default = 1)
  • callback: callback function for result (err, queue_instance, queue_info)
destroy

Destroy a queue.

queue.destroy(name, callback)
  • name: name of the queue
  • callback: callback for result (err, destroyed)

You can destroy queues that exist or don't exist; if you try to destroy a queue that doesn't exist, destroyed = false. If a queue was destroyed, destroyed = true.

publish

Publish a job to a queue.

queue.publish(name, message)
  • name: name of the queue
  • message: an Object that is your message / job to add to the queue
handle

Start handling jobs in a queue.

queue.handle(name, handler)
  • name: name of the queue
  • handler: a Function to receive jobs (job, ack)

Jobs must be acknowledged. You can either ack immediately (so all jobs will be run at most once) or you can ack on job completion (so all jobs will run at least once).

ignore

Stop handling a queue.

queue.ignore(name)
  • name: name of the queue
purge

Purge a queue.

queue.purge(name, callback);
  • name: name of the queue
  • callback: Function to be called on completion with (err, countOfPurgedMessages)

Tests

  1. Run rabbit on 'amqp://localhost'
  2. npm test

Keywords

FAQs

Package last updated on 15 Nov 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc