Ocelot by Tom Pallister

<PackageReference Include="Ocelot" Version="13.2.0-alpha0001" />

.NET API 241,664 bytes

 Ocelot 13.2.0-alpha0001

Ocelot is an API Gateway. The project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. reference tokens. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates 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 stored in a per request scoped repository and retrived as the requests 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.

<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
  <metadata>
    <id>Ocelot</id>
    <version>13.2.0-alpha0001</version>
    <authors>Tom Pallister</authors>
    <owners>Tom Pallister</owners>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <projectUrl>https://github.com/ThreeMammals/Ocelot</projectUrl>
    <iconUrl>http://threemammals.com/images/ocelot_logo.png</iconUrl>
    <description>Ocelot is an API Gateway. The project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens.  reference tokens. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates 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 stored in a per request scoped repository and retrived as the requests 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.</description>
    <tags>API Gateway .NET core</tags>
    <dependencies>
      <group targetFramework=".NETStandard2.0">
        <dependency id="FluentValidation" version="7.6.104" exclude="Build,Analyzers" />
        <dependency id="Microsoft.AspNetCore" version="2.1.1" exclude="Build,Analyzers" />
        <dependency id="Microsoft.AspNetCore.MiddlewareAnalysis" version="2.1.1" exclude="Build,Analyzers" />
        <dependency id="Microsoft.AspNetCore.Mvc" version="2.1.1" exclude="Build,Analyzers" />
        <dependency id="Microsoft.Extensions.DiagnosticAdapter" version="2.1.0" exclude="Build,Analyzers" />
      </group>
    </dependencies>
  </metadata>
</package>