MediatR

Simple, unambitious mediator implementation in .NET (by jbogard)

MediatR Alternatives

Similar projects and alternatives to MediatR

  • deno

    448 MediatR VS deno

    A modern runtime for JavaScript and TypeScript.

  • RabbitMQ

    92 MediatR VS RabbitMQ

    Open source RabbitMQ: core server and tier 1 (built-in) plugins

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
  • CleanArchitecture

    Clean Architecture Solution Template for ASP.NET Core

  • eShopOnContainers

    Discontinued Cross-platform .NET sample microservices and container based application that runs on Linux Windows and macOS. Powered by .NET 7, Docker Containers and Azure Kubernetes Services. Supports Visual Studio, VS for Mac and CLI based environments with Docker CLI, dotnet CLI, VS Code or any other code editor. Moved to https://github.com/dotnet/eShop.

  • Hangfire

    An easy way to perform background job processing in .NET and .NET Core applications. No Windows Service or separate process required

  • Rx.NET

    The Reactive Extensions for .NET

  • xUnit

    xUnit.net is a free, open source, community-focused unit testing tool for .NET.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • AutoMapper

    A convention-based object-object mapper in .NET.

  • ua-parser-js

    29 MediatR VS ua-parser-js

    UAParser.js - Free & open-source JavaScript library to detect user's Browser, Engine, OS, CPU, and Device type/model. Runs either in browser (client-side) or node.js (server-side).

  • ApiEndpoints

    A project for supporting API Endpoints in ASP.NET Core web applications.

  • NUnit

    NUnit Framework

  • OneOf

    Easy to use F#-like ~discriminated~ unions for C# with exhaustive compile time matching

  • FluentValidation

    A popular .NET validation library for building strongly-typed validation rules.

  • CleanArchitecture

    Clean Architecture Solution Template: A starting point for Clean Architecture with ASP.NET Core (by ardalis)

  • enquirer

    18 MediatR VS enquirer

    Stylish, intuitive and user-friendly prompts, for Node.js. Used by eslint, webpack, yarn, pm2, pnpm, RedwoodJS, FactorJS, salesforce, Cypress, Google Lighthouse, Generate, tencent cloudbase, lint-staged, gluegun, hygen, hardhat, AWS Amplify, GitHub Actions Toolkit, @airbnb/nimbus, and many others! Please follow Enquirer's author: https://github.com/jonschlinkert

  • Mediator.Net

    A simple mediator for .Net for sending command, publishing event and request response with pipelines supported

  • Dapper

    Discontinued Dapper - a simple object mapper for .Net [Moved to: https://github.com/DapperLib/Dapper] (by StackExchange)

  • Polly

    Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. From version 6.0.1, Polly targets .NET Standard 1.1 and 2.0+.

  • Fluent Assertions

    A very extensive set of extension methods that allow you to more naturally specify the expected outcome of a TDD or BDD-style unit tests. Targets .NET Framework 4.7, as well as .NET Core 2.1, .NET Core 3.0, .NET 6, .NET Standard 2.0 and 2.1. Supports the unit test frameworks MSTest2, NUnit3, XUnit2, MSpec, and NSpec3.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better MediatR alternative or higher similarity.

MediatR reviews and mentions

Posts with mentions or reviews of MediatR. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-27.
  • The Monad Invasion - Part 2: Monads in Action!
    3 projects | dev.to | 27 Feb 2024
    You probably noticed that .SetName() returns a Either. You may have come across Unit in libraries like MediatR or Language-Ext. It's a simple construct representing a type with only one possible value. We use it as a placeholder for operations that do not return a value but may return another state. In our example, .SetName() is a Command that does not return a value but may fail. Therefore, the monad Either carries two possible states: Right (without value) or Left (with an Error).
  • How small is the smallest .NET Hello World binary?
    8 projects | news.ycombinator.com | 9 Jul 2023
    The widely used MediatR library[0] could be used to do that as well, just FYI.

    [0]: https://github.com/jbogard/MediatR

  • Cannot use disposed service
    1 project | /r/dotnet | 4 Jul 2023
  • Exception handling between controller and service
    6 projects | /r/dotnet | 1 Jul 2023
  • CQRS: How to handle duplicate queries inside a CommandHandler
    1 project | /r/dotnetcore | 26 Jun 2023
    Hope this GH issue shed some light on why injecting handler inside another handler is not good https://github.com/jbogard/MediatR/issues/400
  • Is MediatR the only real CQRS solution for .Net?
    4 projects | /r/dotnet | 6 May 2023
    From: https://github.com/jbogard/MediatR
  • Easiest way to build the fastest REST API in C# and .NET 7 using CQRS
    4 projects | dev.to | 25 Apr 2023
    I gave it a go and I was impressed how easy and fast it was to set it all up. Since I'm not a big fan of REPR pattern almost all my projects are using CQRS pattern with a help of MediatR ](https://github.com/jbogard/MediatR) I immediately started going over something similar that Fast Endpoints offer which is a command bus.
  • MVVM Question: How do you manage the interaction between Model and ViewModel?
    4 projects | /r/csharp | 3 Apr 2023
    I'd use a dedicated event bus based on Reactive Extensions or MediatR to publish domain events from your domain services. This probably doesn't solve all your ViewModel update problems as is, maybe you need to revise the granularity (maybe you can have smaller ViewModels that refresh single property that exposes the Model) and lifespan (sometimes you can create a ViewModel, make it perform it's task and then discard it completely) of your ViewModels.
  • Async Methods after setting a property.
    2 projects | /r/csharp | 16 Mar 2023
    If you're finding yourself in a situation where you need to turn this behavior into a pattern because there are a lot of View Models that need to execute async business logic in response to some changes, I'd go with something like MediatR or Reactive Extensions. The idea is, again, that some other, probably business-level, component listens to changes in a decoupled way (that means it doesn't subscribe directly to your View Model, but to an event bus instead). View Model publishes change events to the event bus, and business-component reacts to these events by executing the business logic.
  • I don't get why I should use Redux
    6 projects | /r/webdev | 9 Mar 2023
    What people really want is to design the logic of an app independently from the component hierarchy. That means you need to store state somewhere other than the components and you need to dispatch events that are not attached to the component hierarchy. Also, a one way data flow has well known benefits as described by things like CQRS, RabbitMQ, and MediatR.
  • A note from our sponsor - WorkOS
    workos.com | 19 Apr 2024
    The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning. Learn more →

Stats

Basic MediatR repo stats
53
10,593
6.2
9 days ago
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com