mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-22 06:22:50 +08:00
Merge pull request #47 from TomPallister/feature/nuget-package-details
updated nuget info
This commit is contained in:
commit
9d8d99ef4e
@ -30,9 +30,6 @@ and retrived as the requests goes back up the Ocelot pipeline. There is a piece
|
|||||||
that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client.
|
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.
|
That is basically it with a bunch of other features.
|
||||||
|
|
||||||
This is not ready for production yet as uses a lot of rc and beta .net core packages.
|
|
||||||
Hopefully by the start of 2017 it will be in use.
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
Pull requests, issues and commentary welcome! No special process just create a request and get in
|
Pull requests, issues and commentary welcome! No special process just create a request and get in
|
||||||
|
@ -1,5 +1,13 @@
|
|||||||
{
|
{
|
||||||
"version": "0.0.0-dev",
|
"version": "0.0.0-dev",
|
||||||
|
"title": "Ocelot",
|
||||||
|
"summary": "API Gateway created using .NET core.",
|
||||||
|
"projectUrl": "https://github.com/TomPallister/Ocelot",
|
||||||
|
"description": "This 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. We have been unable to find this in my current workplace without having to write our own Javascript middlewares to handle the IdentityServer reference tokens. We would rather use the IdentityServer code that already exists to do this. 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.",
|
||||||
|
"tags": [
|
||||||
|
"API Gateway",
|
||||||
|
".NET core"
|
||||||
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
|
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user