Ocelot 24.0.0-beta.1

Suggested Alternatives

Ocelot 24.0.0

Additional Details

Stable version 24.0.0

This is a prerelease version of Ocelot.
There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Ocelot --version 24.0.0-beta.1
                    
NuGet\Install-Package Ocelot -Version 24.0.0-beta.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ocelot" Version="24.0.0-beta.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ocelot" Version="24.0.0-beta.1" />
                    
Directory.Packages.props
<PackageReference Include="Ocelot" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ocelot --version 24.0.0-beta.1
                    
#r "nuget: Ocelot, 24.0.0-beta.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Ocelot&version=24.0.0-beta.1&prerelease
                    
Install Ocelot as a Cake Addin
#tool nuget:?package=Ocelot&version=24.0.0-beta.1&prerelease
                    
Install Ocelot as a Cake Tool

Ocelot Logo

Release Status Development Status ReadTheDocs Status Coveralls Status License: MIT NuGet Downloads

About

Ocelot is a .NET API gateway. This project is aimed at people using .NET running a microservices (service-oriented) architecture that needs a unified point of entry into their system. However, it will work with anything that speaks HTTP(S) and runs on any platform that ASP.NET Core supports.

Ocelot consists of a series of ASP.NET Core middlewares arranged in a specific order.

Ocelot custom middlewares manipulate the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware, where it creates a HttpRequestMessage object, which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is retrieved as the request goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object, and that is returned to the client. That is basically it, with a bunch of other features!

Features

A concise list of Ocelot's capabilities, for further details refer to Documentation

Install

Ocelot is designed to work with ASP.NET Core and it targets net8.0 LTS and net9.0 STS target framework monikers (TFMs). [^4]

Install Ocelot package and its dependencies using NuGet package manager:

Install-Package Ocelot

Or via the .NET CLI:

dotnet add package Ocelot

All versions are available on NuGet.

Documentation

  • RST-sources: This includes the source code of the documentation as .rst-files, which are up to date for current development.
  • Read the Docs: This includes a lot of information and will be helpful if you want to understand the features Ocelot currently offers.
  • Ask Ocelot Guru: It is an Ocelot-focused AI designed to answer your questions. [^5]

Coming up

You can see what we are working on in the backlog.

Contributing

We love to receive contributions from the community, so please keep them coming. Pull requests, issues, and commentary welcome! <img src="https://raw.githubusercontent.com/ThreeMammals/Ocelot/refs/heads/assets/images/octocat.png" alt="octocat" height="20" />

Please complete the relevant template for issues and pull requests. Sometimes it's worth getting in touch with us to discuss changes before doing any work in case this is something we are already doing or it might not make sense. We can also give advice on the easiest way to do things <img src="https://raw.githubusercontent.com/ThreeMammals/Ocelot/refs/heads/assets/images/octocat.png" alt="octocat" height="20" />

Finally, we mark all existing issues as label: help wanted label: small effort label: medium effort label: large effort. [^6] If you want to contribute for the first time, we suggest looking at a label: help wanted label: small effort label: good first issue <img src="https://raw.githubusercontent.com/ThreeMammals/Ocelot/refs/heads/assets/images/octocat.png" alt="octocat" height="20" />

Notes

[^1]: Ocelot does not directly support GraphQL. Developers can easily integrate the GraphQL for .NET library. [^2]: Ocelot supports the following service discovery providers: (1) Consul through the Ocelot.Provider.Consul extension package, (2) Kubernetes via the Ocelot.Provider.Kubernetes extension package, and (3) Netflix Eureka, which utilizes the Steeltoe.Discovery.Eureka package referenced within the Ocelot.Provider.Eureka extension package. Additionally, Ocelot supports (4) Azure Service Fabric for service discovery, along with special modes such as Dynamic Routing and Custom Providers. [^3]: Retry policies only via Polly library referenced within the Ocelot.Provider.Polly extension package. [^4]: Starting with version 21 and higher, the solution's code base supports Multitargeting as SDK-style projects. It should be easier for teams to migrate to the currently supported .NET 8 and 9 frameworks. Also, new features will be available for all .NET SDKs that we support via multitargeting. Find out more here: Target frameworks in SDK-style projects [^5]: Ocelot Guru is an unofficial tool to get answers regarding Ocelot: please consider it an advanced search tool. Thus, we have an official Questions & Answers category in the Discussions space. [^6]: See all labels for the repository, which are useful for searching and filtering.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (124)

Showing the top 5 NuGet packages that depend on Ocelot:

Package Downloads
MMLib.SwaggerForOcelot

Swagger generator for Ocelot downstream services.

Ocelot.Provider.Polly

Provides Ocelot extensions to use Polly.NET

Ocelot.Cache.CacheManager

Provides Ocelot extensions to use CacheManager.Net

Ocelot.Provider.Consul

Provides Ocelot extensions to use Consul service discovery.

2AxisTechnology.Core.CL

Plz don't install.

GitHub repositories (34)

Showing the top 20 popular GitHub repositories that depend on Ocelot:

Repository Stars
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
phongnguyend/Practical.CleanArchitecture
Full-stack .Net 9 Clean Architecture (Microservices, Modular Monolith, Monolith), Blazor, Angular 19, React 19, Vue 3.5, BFF with YARP, NextJs 15, Domain-Driven Design, CQRS, SOLID, Asp.Net Core Identity Custom Storage, OpenID Connect, EF Core, OpenTelemetry, SignalR, Background Services, Health Checks, Rate Limiting, Clouds (Azure, AWS, GCP), ..
geffzhang/NanoFabric
基于Consul + .NET Core + Polly + Ocelot + Exceptionless + IdentityServer等开源项目的微服务开发框架
abpframework/abp-samples
Sample solutions built with the ABP Framework
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
q315523275/FamilyBucket
集合.net core、ocelot、consul、netty、rpc、eventbus、configserver、tracing、sqlsugar、vue-admin、基础管理平台等构建的微服务一条龙应用
madslundt/NetCoreMicroservicesSample
Sample using micro services in .NET Core 3.1 Focusing on clean code
hamed-shirbandi/TaskoMask
Task management system based on .NET 8 with Microservices, DDD, CQRS, Event Sourcing and Testing Concepts
jerrytang67/SoMall
社交电商商城开源项目.socail+mall即取名SoMall ,abp netcore 3.1 angular vue uni-app typescript docker mssql
migomiddle/xms
基于.netcore的跨平台应用框架,包含众多常用模块,易上手、易扩展,xms可理解为x(可扩展的/任意的)m(管理)s(系统)
Burgyn/MMLib.SwaggerForOcelot
This repo contains swagger extension for ocelot.
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
BehzadDara/OnlineShop
beetlex-io/Bumblebee
.net core fast http and websocket gateway components
falberthen/EcommerceDDD
Experimental full-stack application using Domain-Driven Design, Microservices, Event Sourcing, CQRS and Angular.
johnph/simple-transaction
Microservices sample architecture for .Net Core Application
anuraj/AspNetCoreSamples
This repository is set of ASP.NET Core projects and scripts.
yc-l/yc.boilerplate
YC. Boilerplate is a set of loose coupling, flexible combination, complete functions, convenient development, and reduces the workload of development.
catcherwong-archive/APIGatewayDemo
:seedling: Simple samples that use Ocelot to build API Gateway.
catcherwong/Demos
:100:Some demos for learning
Version Downloads Last updated
24.0.0 239 4/20/2025
23.4.3 99,469 1/17/2025
23.4.2 104,422 11/27/2024 23.4.2 is deprecated because it has critical bugs.
23.4.1 17,132 11/22/2024 23.4.1 is deprecated because it has critical bugs.
23.4.0 17,397 11/18/2024 23.4.0 is deprecated because it has critical bugs.
23.3.6 60,580 10/31/2024
23.3.4 96,511 10/3/2024 23.3.4 is deprecated because it has critical bugs.
23.3.3 339,970 6/11/2024 23.3.3 is deprecated because it has critical bugs.
23.3.0 14,744 6/8/2024 23.3.0 is deprecated because it has critical bugs.
23.2.2 228,324 4/5/2024
23.2.0 10,895 4/1/2024 23.2.0 is deprecated because it has critical bugs.
23.1.0 186,163 3/4/2024
23.0.0 95,322 2/13/2024
22.0.1 288,537 12/8/2023
22.0.0 44,506 11/28/2023 22.0.0 is deprecated because it has critical bugs.
21.0.0 33,350 11/21/2023
20.0.0 215,444 10/7/2023
19.0.4 17,148 10/6/2023
19.0.3 29,181 9/21/2023
19.0.2 243,252 4/22/2023
19.0.1 4,638 4/22/2023
19.0.0 4,166 4/22/2023
18.0.0 2,429,029 1/20/2022
17.0.1 237,586 12/20/2021
17.0.0 1,276,007 12/11/2020
16.0.2 20,195 12/11/2020
16.0.1 1,309,896 5/25/2020
16.0.0 59,865 5/23/2020
1.1.0 3,438 2/2/2017 1.1.0 is deprecated because it is no longer maintained and has critical bugs.

Upgrade to .NET 9 with supported TFMs (net8.0;net9.0)