How this analysis was created: This summary and feature list were written by an AI model that read the project's README and public documentation pages. Each feature links to the documentation it came from; stars, license and language come straight from the GitHub API. The model does not read the source code, and the analysis is refreshed when the project is re-analysed. Learn more on our About page.
In-process .NET mediator for CQS and DDD with first-class commands, queries, and events, a typed handler pipeline, and durable messaging.
The main features of litenova/litebus are: Messaging and Patterns.
Open-source alternatives to litenova/litebus include: eventflow/eventflow — Async/await first CQRS+ES and DDD framework for .NET. jbogard/mediatr — MediatR is a .NET library for implementing the mediator pattern, serving as an in-process message broker that… mayuanyang/mediator.net — A simple mediator for .Net for sending command, publishing event and request response with pipelines supported.
Async/await first CQRS+ES and DDD framework for .NET
MediatR is a .NET library for implementing the mediator pattern, serving as an in-process message broker that decouples senders and receivers by routing messages through a central dispatcher. It enables the transmission of requests and notifications between different components within a single application process. The framework provides a pipeline behavior system that allows for the interception and processing of messages through a sequence of custom behaviors. This architecture is used to implement cross-cutting concerns, such as logging or validation, across multiple handlers. The library
A simple mediator for .Net for sending command, publishing event and request response with pipelines supported