Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rabbitmq/rabbitmq-tutorials
Tutorials for using RabbitMQ in various ways
https://github.com/rabbitmq/rabbitmq-tutorials
rabbitmq tutorials
Last synced: 10 days ago
JSON representation
Tutorials for using RabbitMQ in various ways
- Host: GitHub
- URL: https://github.com/rabbitmq/rabbitmq-tutorials
- Owner: rabbitmq
- License: apache-2.0
- Created: 2010-09-21T11:41:26.000Z (about 14 years ago)
- Default Branch: main
- Last Pushed: 2024-09-30T21:05:31.000Z (about 1 month ago)
- Last Synced: 2024-10-02T02:05:01.332Z (about 1 month ago)
- Topics: rabbitmq, tutorials
- Language: Java
- Homepage: http://www.rabbitmq.com/getstarted.html
- Size: 4.94 MB
- Stars: 6,637
- Watchers: 268
- Forks: 3,566
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome - rabbitmq/rabbitmq-tutorials - Tutorials for using RabbitMQ in various ways (Java)
- favorite-link - 以各种方式使用 RabbitMQ 的教程。
- my-awesome - rabbitmq-tutorials - Tutorials for using RabbitMQ in various ways (C#)
README
# RabbitMQ Tutorials
This project contains code for [RabbitMQ tutorials](https://www.rabbitmq.com/getstarted.html) with
their ports to various languages.This repository only contains runnable code. Please consult [tutorials on the site](https://www.rabbitmq.com/getstarted.html)
to learn more about [the concepts](https://www.rabbitmq.com/getstarted.html), requirements, supported client library version and so on.And please check out the rest of the [RabbitMQ documentation](https://www.rabbitmq.com/documentation.html)!
## Prerequisites
All tutorials **require a RabbitMQ node running on localhost** with stock (default) settings.
Please refer to RabbitMQ documentation to learn
more about various [installation options](https://www.rabbitmq.com/download.html):* A [Windows installer](https://www.rabbitmq.com/install-windows.html)
* A [Docker image](https://hub.docker.com/_/rabbitmq/)
* [Homebrew](https://www.rabbitmq.com/install-homebrew.html) on MacOS
* Packages for [Ubuntu and Debian](https://www.rabbitmq.com/install-debian.html) as well as [RPM-based distributions](https://www.rabbitmq.com/install-rpm.html)
* A generic [binary build](https://www.rabbitmq.com/install-generic-unix.html) for Linux, *BSD and other UNIX-like systems## Languages
The following ports are available:
* [C#](./dotnet)
* [Clojure](./clojure)
* [Common Lisp](./common-lisp)
* [Dart](./dart)
* [Elixir](./elixir)
* [Elixir (Streams)](./elixir-stream)
* [Erlang](./erlang)
* [Go](./go)
* [Haskell](./haskell)
* [JavaScript (with Node and amqplib)](./javascript-nodejs) (using callbacks)
* [JavaScript (with Node and amqplib)](https://github.com/amqp-node/amqplib) (using promises/futures)
* [Java](./java) (with manual dependency management)
* [Java with Gradle](./java-gradle)
* [Java with Maven](./java-mvn)
* [Kotlin](./kotlin)
* [PHP (with php-amqplib)](./php)
* [PHP (with php-amqp)](./php-amqp)
* [PHP (with queue-interop)](./php-interop)
* [Perl](./perl)
* [Python (with Pika)](./python)
* [Ruby (with Bunny)](./ruby)
* [Rust with amqprs](./rust-amqprs)
* [Rust with Lapin](./rust-lapin)
* [Scala](./scala)
* [Swift](./swift)
* [Spring AMQP](./spring-amqp)
* [SoapUI](./soapui)
## LicenseReleased under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt).