<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Asiel Hernández Valdes</title>
    <description>The latest articles on DEV Community by Asiel Hernández Valdes (@asiel_hernndezvaldes_f0).</description>
    <link>https://dev.to/asiel_hernndezvaldes_f0</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1700010%2F780c0992-6a66-4444-8608-18eaf01be7f8.jpg</url>
      <title>DEV Community: Asiel Hernández Valdes</title>
      <link>https://dev.to/asiel_hernndezvaldes_f0</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/asiel_hernndezvaldes_f0"/>
    <language>en</language>
    <item>
      <title>Stop Building API Gateways From Scratch — Use QvaSoft Gateway Instead</title>
      <dc:creator>Asiel Hernández Valdes</dc:creator>
      <pubDate>Fri, 06 Mar 2026 15:29:51 +0000</pubDate>
      <link>https://dev.to/asiel_hernndezvaldes_f0/stop-building-api-gateways-from-scratch-use-qvasoft-gateway-instead-2dpd</link>
      <guid>https://dev.to/asiel_hernndezvaldes_f0/stop-building-api-gateways-from-scratch-use-qvasoft-gateway-instead-2dpd</guid>
      <description>&lt;p&gt;If you're running microservices, you already know the pain: routing, authentication, rate limiting, Swagger docs, load balancing — all glued together with custom middleware that nobody wants to maintain.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;QvaSoft Gateway&lt;/strong&gt; is an API Gateway built on .NET 10 that ships with a &lt;strong&gt;visual admin panel&lt;/strong&gt; out of the box. No YAML pipelines, no Kubernetes operators — just download, run, and configure everything from a browser.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is QvaSoft Gateway?
&lt;/h2&gt;

&lt;p&gt;It's a single binary (or Docker image) that sits in front of your microservices and handles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Routing&lt;/strong&gt; — Map any inbound path to any downstream service&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Authentication&lt;/strong&gt; — JWT (HMAC, RSA, JWKS), OpenID Connect, and IdentityServer — configure multiple providers simultaneously&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rate Limiting&lt;/strong&gt; — Per-route throttling, client whitelists, and custom quotas&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Load Balancing&lt;/strong&gt; — Round Robin, Least Connection, and Sticky Sessions with built-in circuit breaker patterns&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Swagger Aggregation&lt;/strong&gt; — Unified OpenAPI docs for all your services through a single endpoint&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Request Aggregation&lt;/strong&gt; — Combine multiple downstream responses into one API call&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt; — IP allow/block lists with CIDR notation, claims-based access control, and header transformations&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Request Tracing&lt;/strong&gt; — Monitor headers, body, and flow across services per route&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Plugin System&lt;/strong&gt; — Extend with custom delegating handlers. Drop a DLL, configure per route — done&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Up and Running in 60 Seconds
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;With Docker:&lt;/strong&gt;&lt;br&gt;
  docker run -p 4000:4000 asielhv/qvasoft-gateway&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Or with .NET Runtime:&lt;/strong&gt;&lt;br&gt;
  dotnet ApiGateway.dll&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Not Just Use NGINX or Kong?
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;QvaSoft Gateway&lt;/th&gt;
&lt;th&gt;NGINX&lt;/th&gt;
&lt;th&gt;Kong&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Visual Admin Panel&lt;/td&gt;
&lt;td&gt;✅ Built-in&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;td&gt;✅ (paid)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Zero Config Start&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;.NET Ecosystem&lt;/td&gt;
&lt;td&gt;✅ Native&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multiple Auth Providers&lt;/td&gt;
&lt;td&gt;✅ JWT, OIDC, Certs&lt;/td&gt;
&lt;td&gt;Plugin-based&lt;/td&gt;
&lt;td&gt;Plugin-based&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Swagger Aggregation&lt;/td&gt;
&lt;td&gt;✅ Built-in&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Single Binary / Container&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Free Tier&lt;/td&gt;
&lt;td&gt;✅ Unlimited routes&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;Limited&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;QvaSoft Gateway is purpose-built for teams that use .NET microservices and want a &lt;strong&gt;developer-friendly experience without the operational overhead&lt;/strong&gt; of Lua scripts or plugin marketplaces.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Admin Panel Changes Everything
&lt;/h2&gt;

&lt;p&gt;Most gateways force you to edit JSON or YAML files and restart. QvaSoft Gateway gives you a modern web UI where you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Add, edit, and delete routes visually&lt;/li&gt;
&lt;li&gt;Configure authentication per route&lt;/li&gt;
&lt;li&gt;Set up rate limiting with a few clicks&lt;/li&gt;
&lt;li&gt;Manage Swagger endpoint aggregation&lt;/li&gt;
&lt;li&gt;Build response aggregations from multiple services&lt;/li&gt;
&lt;li&gt;Monitor request tracing in real time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every change is applied instantly — no restarts required.&lt;/p&gt;

&lt;h2&gt;
  
  
  Free Forever
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;Community edition&lt;/strong&gt; is free with no route limits. It includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Unlimited routes&lt;/li&gt;
&lt;li&gt;Visual admin panel&lt;/li&gt;
&lt;li&gt;All authentication methods (JWT, OIDC, Certificates)&lt;/li&gt;
&lt;li&gt;Rate limiting, caching, and load balancing&lt;/li&gt;
&lt;li&gt;Swagger aggregation&lt;/li&gt;
&lt;li&gt;Plugin system&lt;/li&gt;
&lt;li&gt;Docker support&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Need custom branding, clustering, analytics, or SLA support? There's an &lt;strong&gt;Enterprise edition&lt;/strong&gt; for that.&lt;/p&gt;

&lt;h2&gt;
  
  
  Get Started Now
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🌐 &lt;strong&gt;Website:&lt;/strong&gt; &lt;a href="https://gateway.qvasoft.net" rel="noopener noreferrer"&gt;gateway.qvasoft.net&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📦 &lt;strong&gt;Docker:&lt;/strong&gt; &lt;code&gt;docker run -p 4000:4000 asielhv/qvasoft-gateway&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;📖 &lt;strong&gt;Docs:&lt;/strong&gt; &lt;a href="https://gateway.qvasoft.net/docs/getting-started" rel="noopener noreferrer"&gt;gateway.qvasoft.net/docs/getting-started&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;QvaSoft Gateway — Route, secure, and manage all your microservices from a single point with a built-in admin panel. No code required.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>api</category>
      <category>backend</category>
      <category>dotnet</category>
      <category>microservices</category>
    </item>
  </channel>
</rss>
