Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ew-endwall/fastify-rabbitmq
Quick start sample project for RabbitMQ, it works in plug and play logic with all the necessary requirements to use rabbitMQ ready. With this example, you can quickly put your own project into production.
https://github.com/ew-endwall/fastify-rabbitmq
example example-code example-project fastify fastifyjs rabbitmq rabbitmq-client rabbitmq-management rabbitmq-server
Last synced: 8 days ago
JSON representation
Quick start sample project for RabbitMQ, it works in plug and play logic with all the necessary requirements to use rabbitMQ ready. With this example, you can quickly put your own project into production.
- Host: GitHub
- URL: https://github.com/ew-endwall/fastify-rabbitmq
- Owner: EW-EndWall
- License: mit
- Created: 2024-07-18T10:40:06.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-18T10:46:14.000Z (4 months ago)
- Last Synced: 2024-10-12T02:42:08.254Z (about 1 month ago)
- Topics: example, example-code, example-project, fastify, fastifyjs, rabbitmq, rabbitmq-client, rabbitmq-management, rabbitmq-server
- Language: JavaScript
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Fastify && RabbitMQ
# Table Of Contents
- [About](#about)
- [Quick Installation](#quick-installation)
- [Install](#install)
- [Development](#development)
- [License](#license)# About
Quick start sample project for RabbitMQ, it works in plug and play logic with all the necessary requirements to use rabbitMQ ready. With this example, you can quickly put your own project into production.
# Quick Installation
## Docker Container Start
```bash
$ docker run -d --hostname my-rabbit --name some-rabbit -p 5672:5672 -p 15672:15672 -e RABBITMQ_DEFAULT_USER=user -e RABBITMQ_DEFAULT_PASS=password rabbitmq:3-management
```### Install
```bash
$ npm install
```or
```bash
$ yarn install
```or
```bash
$ pnpm install
```### Development
```bash
$ npm dev
```or
```bash
$ yarn dev
```or
```bash
$ pnpm dev
```# License
Distributed under the MIT License. See [LICENSE](./blob/main/LICENSE) for more information.