New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hermesjs-amqp

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hermesjs-amqp

AMQP adapter for HermesJS

  • 0.5.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
186
decreased by-3.12%
Maintainers
2
Weekly downloads
 
Created
Source

hermesjs-amqp

AMQP adapter for HermesJS

Installing

npm install --save hermesjs-amqp

Example

const hermes = require('hermesjs');
const amqp_broker = require('hermesjs-amqp');

const app = hermes();

const amqp = amqp_broker({
  exchange: 'YOUR EXCHANGE NAME HERE...',
  username: 'YOUR BROKER USERNAME HERE...',
  password: 'YOUR BROKER PASSWORD HERE...',
  topic: 'hello.#',
  queue: 'my_queue_name', // OPTIONAL
  subscribe: false, // OPTIONAL
  queue_options: { exclusive: true }, // OPTIONAL
  consumer_options: { noAck: true }, // OPTIONAL
  host: 'localhost', // OPTIONAL
  port: 5672 // OPTIONAL
});

app.add('broker', amqp);

Keywords

FAQs

Package last updated on 20 May 2017

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