Skip to content

Instantly share code, notes, and snippets.

@jmandzik
Last active December 23, 2015 16:19
Show Gist options
  • Select an option

  • Save jmandzik/6661530 to your computer and use it in GitHub Desktop.

Select an option

Save jmandzik/6661530 to your computer and use it in GitHub Desktop.
var Service = require('edge-service');
var e = new Service({
// host: 'rabbit-host',
// port: 5672,
// exchange: 'amq.topic',
// queue: '',
routingKey: '#'
});
e.addHandler('listen', function(msg) {
console.log(msg);
});
e.run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment