0.2.0 • Published 10 years ago

crane v0.2.0

Weekly downloads
4
License
-
Repository
github
Last release
10 years ago

Crane

Build Coverage Quality Dependencies Tips

Crane is a message queue middleware layer for Node. Applications can be constructed by using middleware and defining routes.

This architecture has been proven effective by Express, which provides HTTP middleware. Crane adopts this approach, repurposing it for use with message queues, allowing workers to be built quickly and easily, using patterns familiar to Node.js developers.

Install

$ npm install crane

Usage

var crane = require('crane');
var app = crane();

app.work('tasks/email', function(msg, next) {
  console.log('sending email to: ' + msg.body.to);
  msg.ack();
});

Adapters

Adapters are used to connect to message queues, receiving messages and dispatching those messages to the application for processing.

The following table lists commonly used strategies:

AdapterDeveloper
AMQPJared Hanson

Tests

$ npm install
$ make test

Credits

License

The MIT License

Copyright (c) 2011-2014 Jared Hanson [http://jaredhanson.net/](http://jaredhanson.net/)