https://github.com/BEagle1984/silverback
Silverback is a simple but feature-rich message bus for .NET core (it currently supports Kafka, RabbitMQ and MQTT).
https://github.com/BEagle1984/silverback
kafka message-broker message-brokers message-bus messaging microservice microservices rabbitmq service-bus silverback
Last synced: 5 months ago
JSON representation
Silverback is a simple but feature-rich message bus for .NET core (it currently supports Kafka, RabbitMQ and MQTT).
- Host: GitHub
- URL: https://github.com/BEagle1984/silverback
- Owner: BEagle1984
- License: mit
- Created: 2018-04-06T09:35:32.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T08:55:58.000Z (about 1 year ago)
- Last Synced: 2024-04-13T22:03:13.976Z (about 1 year ago)
- Topics: kafka, message-broker, message-brokers, message-bus, messaging, microservice, microservices, rabbitmq, service-bus, silverback
- Language: C#
- Homepage: https://silverback-messaging.net
- Size: 35.9 MB
- Stars: 244
- Watchers: 16
- Forks: 35
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-Microservices-DotNet - Silverback - Silverback is a simple but feature-rich message bus for .NET (supports Kafka, RabbitMQ and MQTT). (Tools and Libraries / Messaging)
README
#
![]()
A simple but feature-rich framework to build reactive/event-driven applications or microservices.
It includes an in-memory message bus that can be easily connected to a message broker to integrate with other applications or microservices. At the moment only [Apache Kafka](https://kafka.apache.org/), MQTT and [RabbitMQ](https://www.rabbitmq.com/) are supported but other message brokers could be added without much effort.
Its main features are:
* Simple yet powerful message bus
* Abstracted integration with a message broker
* Apache Kafka, MQTT and RabbitMQ integration
* DDD, domain events and transactional messaging
* Built-in error handling policies for consumersDiscover more in the [project's website][docs-site].
## Project Status
### Build
[](https://dev.azure.com/beagle1984/Silverback/_build/latest?definitionId=5&branchName=master)
[](https://dev.azure.com/beagle1984/Silverback/_build/latest?definitionId=5&branchName=master)### Quality
[](https://sonarcloud.io/dashboard?id=silverback)
[](https://sonarcloud.io/dashboard?id=silverback)
[](https://sonarcloud.io/dashboard?id=silverback)
[](https://sonarcloud.io/dashboard?id=silverback)[](https://sonarcloud.io/dashboard?id=silverback)
[](https://sonarcloud.io/dashboard?id=silverback)
[](https://sonarcloud.io/dashboard?id=silverback)[](https://sonarcloud.io/dashboard?id=silverback)
[](https://sonarcloud.io/dashboard?id=silverback)
[](https://sonarcloud.io/dashboard?id=silverback)
[](https://sonarcloud.io/dashboard?id=silverback)### Activity
[](https://github.com/BEagle1984/silverback/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
[](https://github.com/BEagle1984/silverback/issues?q=is%3Aopen+is)
[](https://github.com/BEagle1984/silverback/pulls)
[](https://github.com/BEagle1984/silverback/commits)## Installation
Silverback is split into multiple nuget packages available on nuget.org.
| Package | Stats |
:--- | :---
[Silverback.Core][Nuget-Core] | [](https://www.nuget.org/packages/Silverback.Core)
[Silverback.Core.Model][Nuget-Core.Model] | [](https://www.nuget.org/packages/Silverback.Core.Model)
[Silverback.Core.EntityFrameworkCore][Nuget-Core.EntityFrameworkCore] | [](https://www.nuget.org/packages/Silverback.Core.EntityFrameworkCore)
[Silverback.Core.Rx][Nuget-Core.Rx] | [](https://www.nuget.org/packages/Silverback.Core.Rx)
[Silverback.Integration][Nuget-Integration] | [](https://www.nuget.org/packages/Silverback.Integration)
[Silverback.Integration.Testing][Nuget-Integration.Testing] | [](https://www.nuget.org/packages/Silverback.Integration.Testing)
[Silverback.Integration.Kafka][Nuget-Integration.Kafka] | [](https://www.nuget.org/packages/Silverback.Integration.Kafka)
[Silverback.Integration.Kafka.SchemaRegistry][Nuget-Integration.Kafka.SchemaRegistry] | [](https://www.nuget.org/packages/Silverback.Integration.Kafka.SchemaRegistry)
[Silverback.Integration.Kafka.Testing][Nuget-Integration.Kafka.Testing] | [](https://www.nuget.org/packages/Silverback.Integration.Kafka.Testing)
[Silverback.Integration.MQTT][Nuget-Integration.MQTT] | [](https://www.nuget.org/packages/Silverback.Integration.MQTT)
[Silverback.Integration.MQTT.Testing][Nuget-Integration.MQTT.Testing] | [](https://www.nuget.org/packages/Silverback.Integration.MQTT.Testing)
[Silverback.Integration.RabbitMQ][Nuget-Integration.RabbitMQ] | [](https://www.nuget.org/packages/Silverback.Integration.RabbitMQ)
[Silverback.Integration.HealthChecks][Nuget-Integration.HealthChecks] | [](https://www.nuget.org/packages/Silverback.Integration.HealthChecks)
[Silverback.Integration.Newtonsoft][Nuget-Integration.Newtonsoft] | [](https://www.nuget.org/packages/Silverback.Integration.Newtonsoft)## Usage
Have a look at the [project's website][docs-site] for usage details, API documentation and samples.
## Contributing
You are encouraged to contribute to Silverback! Please check out the [how to contribute](CONTRIBUTING.md) guide for guidelines about how to proceed.
## License
This code is licensed under MIT license (see [LICENSE](https://github.com/BEagle1984/silverback/blob/master/LICENSE) file for details)
[docs-site]: https://silverback-messaging.net
[Nuget-Core]: https://www.nuget.org/packages/Silverback.Core/
[Nuget-Core.Model]: https://www.nuget.org/packages/Silverback.Core.Model/
[Nuget-Core.EntityFrameworkCore]: https://www.nuget.org/packages/Silverback.Core.EntityFrameworkCore/
[Nuget-Core.Rx]: https://www.nuget.org/packages/Silverback.Core.Rx/
[Nuget-Integration]: https://www.nuget.org/packages/Silverback.Integration/
[Nuget-Integration.Testing]: https://www.nuget.org/packages/Silverback.Integration.Testing/
[Nuget-Integration.Kafka]: https://www.nuget.org/packages/Silverback.Integration.Kafka/
[Nuget-Integration.Kafka.SchemaRegistry]: https://www.nuget.org/packages/Silverback.Integration.Kafka.SchemaRegistry/
[Nuget-Integration.Kafka.Testing]: https://www.nuget.org/packages/Silverback.Integration.Kafka.Testing/
[Nuget-Integration.MQTT]: https://www.nuget.org/packages/Silverback.Integration.MQTT/
[Nuget-Integration.MQTT.Testing]: https://www.nuget.org/packages/Silverback.Integration.MQTT.Testing/
[Nuget-Integration.RabbitMQ]: https://www.nuget.org/packages/Silverback.Integration.RabbitMQ/
[Nuget-Integration.HealthChecks]: https://www.nuget.org/packages/Silverback.Integration.HealthChecks/
[Nuget-Integration.Newtonsoft]: https://www.nuget.org/packages/Silverback.Integration.Newtonsoft/