Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guilhermecaz/ts-rabbitmq-tutorials
Hands-on exploration of RabbitMQ using TypeScript, following the official RabbitMQ tutorials.
https://github.com/guilhermecaz/ts-rabbitmq-tutorials
nodejs rabbitmq typescript
Last synced: 13 days ago
JSON representation
Hands-on exploration of RabbitMQ using TypeScript, following the official RabbitMQ tutorials.
- Host: GitHub
- URL: https://github.com/guilhermecaz/ts-rabbitmq-tutorials
- Owner: GuilhermeCAz
- License: mit
- Created: 2024-07-05T23:42:44.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-06T04:34:56.000Z (6 months ago)
- Last Synced: 2024-07-07T03:27:54.885Z (6 months ago)
- Topics: nodejs, rabbitmq, typescript
- Language: TypeScript
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RabbitMQ Tutorials with TypeScript
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![RabbitMQ Logo](https://img.shields.io/badge/RabbitMQ-%23636363?logo=rabbitmq)](https://www.rabbitmq.com/)
[![Node.js Logo](https://img.shields.io/badge/Node.js-%235FA04E?logo=nodedotjs&logoColor=white)](https://nodejs.org/)
[![TypeScript Logo](https://img.shields.io/badge/TypeScript-%233178C6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)This project is a hands-on exploration of RabbitMQ using TypeScript. It follows the JavaScript tutorials provided by RabbitMQ's official documentation to demonstrate basic messaging patterns and concepts.
## Project Structure
The project is organized into two main applications under the `apps` directory:
- [**queues**](apps/queues): Contains implementations for RabbitMQ messaging using queues.
- **streams**: Placeholder for potential future implementations using RabbitMQ streams.Each tutorial or concept is structured in its own directory under `queues/src`, following a modular approach for easy understanding and experimentation.
## Getting Started
To get started with this project, follow these steps:
### Prerequisites
- Node.js and npm installed on your machine.
- RabbitMQ server running locally or accessible via network.### Installation
1. Clone the repository:
```bash
git clone https://github.com/GuilhermeCAz/ts-rabbitmq-tutorials
cd ts-rabbitmq-tutorials
```2. Install dependencies:
```bash
npm install
```### Running the Tutorials
Each tutorial is in a separate folder under the `queues/src` or `streams/src` directory. To run a tutorial, simply follow the instructions in the `INSTRUCTIONS.md` file of the tutorial.
## Resources
[RabbitMQ Tutorials](https://www.rabbitmq.com/tutorials)
## Contributing
Contributions are welcome! If you find any issues or improvements, please submit an issue or a pull request.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.