Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.