Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET Core API Gateway [closed]

I've got some work to do for school around Microservices.

I've got the architectural concept, but need an implementation to show off. I'll be using angular2 as a client, would like to use a .NET core API gateway to dispatch my requests to different services.

What's the best approach for this? I red something about using Rx.Net, but no definitive example or implementation that I can follow.

So what should I do to implement an API gateway in .NET Core?

like image 872
TanguyB Avatar asked Feb 06 '23 06:02

TanguyB


1 Answers

This may or may not help but I am currently building an API gateway in .NET core.

You can find it at https://github.com/TomPallister/Ocelot.

The code is a little ropey but a few people are working on it now so hopefully we can improve it over time.

like image 166
TomPallister Avatar answered Feb 08 '23 15:02

TomPallister