Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fmvilas/hermes-amqp
AMQP adapter for HermesJS
https://github.com/fmvilas/hermes-amqp
Last synced: 6 days ago
JSON representation
AMQP adapter for HermesJS
- Host: GitHub
- URL: https://github.com/fmvilas/hermes-amqp
- Owner: fmvilas
- Created: 2019-10-02T08:21:52.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-29T01:15:44.000Z (over 2 years ago)
- Last Synced: 2024-11-09T15:08:53.775Z (about 2 months ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hermesjs-amqp
AMQP adapter for [HermesJS](https://github.com/fmvilas/hermes).
## Installing
```
npm install hermesjs-amqp
```## Example
```js
const Hermes = require('hermesjs');
const AmqpAdapter = require('hermesjs-amqp');const app = new Hermes();
app.addAdapter(AmqpAdapter, {
topics: ['trip.requested', 'trip.changed'],
exchange: 'test',
});
```See a working example [here](./example/index.js).
## Author
Fran Méndez ([fmvilas.com](https://fmvilas.com))