<?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: Muhammad Irva</title>
    <description>The latest articles on DEV Community by Muhammad Irva (@justirva09).</description>
    <link>https://dev.to/justirva09</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F488074%2F7ab399ba-2190-4393-b865-926def1049a3.gif</url>
      <title>DEV Community: Muhammad Irva</title>
      <link>https://dev.to/justirva09</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/justirva09"/>
    <language>en</language>
    <item>
      <title>Why I Built Yet Another API Client (and Made It Open Source)</title>
      <dc:creator>Muhammad Irva</dc:creator>
      <pubDate>Mon, 24 Aug 2026 04:30:59 +0000</pubDate>
      <link>https://dev.to/justirva09/why-i-built-yet-another-api-client-and-made-it-open-source-1k4d</link>
      <guid>https://dev.to/justirva09/why-i-built-yet-another-api-client-and-made-it-open-source-1k4d</guid>
      <description>&lt;p&gt;I spend most of my day job writing backend services in Go, wiring up gRPC/Protobuf between microservices at a fintech company in Jakarta. Which means I spend a stupid amount of time in an API client, poking endpoints, checking responses, debugging auth headers.&lt;/p&gt;

&lt;p&gt;For years that meant Postman. Then Postman started feeling like it was actively working against me: forced cloud login just to save a collection locally, a UI that got heavier every release, and a memory footprint that made my laptop fan spin up just for sending a GET request. I tried Insomnia, better for a while, then Kong bought it and the trajectory started looking familiar. I also spent a good while with Electron-based alternatives that get the git-native storage idea right, but the RAM usage problem never actually went away, it just moved to a different logo.&lt;/p&gt;

&lt;p&gt;At some point I stopped complaining and just started building the thing I actually wanted.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Actually Wanted
&lt;/h2&gt;

&lt;p&gt;Nothing fancy. Just:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Fast, native networking.&lt;/strong&gt; Not a browser sandbox pretending to be a native app.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Collections as plain files&lt;/strong&gt;, not one giant JSON blob you can't diff or merge.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Something that doesn't eat hundreds of MBs of RAM&lt;/strong&gt; to show me a response body.
So I built &lt;strong&gt;Relay&lt;/strong&gt;, a desktop API client built on Tauri v2, Rust, and React.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Native Networking Part
&lt;/h2&gt;

&lt;p&gt;Requests run through actual Rust (&lt;code&gt;reqwest&lt;/code&gt;/&lt;code&gt;tonic&lt;/code&gt;), not a webview's &lt;code&gt;fetch()&lt;/code&gt;. No CORS restrictions, real gRPC support, and no Electron/Chromium runtime bundled in, so the installer size and memory footprint are a fraction of the usual.&lt;/p&gt;

&lt;p&gt;Relay also has a built-in Performance tab, so you can watch memory and request timing yourself instead of taking my word for it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1rw53rjfarru8wzjykei.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1rw53rjfarru8wzjykei.jpeg" alt="Relay's Performance tab screenshot" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Git-Native Part
&lt;/h2&gt;

&lt;p&gt;This is the part I'm most opinionated about. Every request, folder, and environment is a plain-text &lt;code&gt;.relay&lt;/code&gt; file, not one giant JSON blob.&lt;/p&gt;

&lt;p&gt;That means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;git diff&lt;/code&gt; actually shows what changed&lt;/li&gt;
&lt;li&gt;Merge conflicts are readable&lt;/li&gt;
&lt;li&gt;Secrets auto-split into a &lt;code&gt;.gitignore&lt;/code&gt;d file, so they never end up in your commit history
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fux0be42aj2mmh0tawmu9.png" alt="git diff" width="800" height="559"&gt;
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fta14luebmrjw7qqcyknz.png" alt="compare branch" width="800" height="500"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What Else Is In There
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Auth tab: Bearer, Basic, AWS SigV4, OAuth2&lt;/li&gt;
&lt;li&gt;gRPC support, via reflection or imported &lt;code&gt;.proto&lt;/code&gt; files&lt;/li&gt;
&lt;li&gt;Runner + CLI for CI pipelines&lt;/li&gt;
&lt;li&gt;Mock server&lt;/li&gt;
&lt;li&gt;Contract check against OpenAPI specs
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fxtn3i8f6v512i2hpau5d.png" alt="gRPC service picker" width="800" height="466"&gt;
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8xe9spbztdd0hpsy5zc2.png" alt="gRPC method picker" width="800" height="445"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  It's Open Source
&lt;/h2&gt;

&lt;p&gt;MIT licensed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/justirva09/relay" rel="noopener noreferrer"&gt;https://github.com/justirva09/relay&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Would love feedback, bug reports, or just war stories about your own Postman-fatigue. ⭐ on GitHub always appreciated if you find it useful.&lt;/p&gt;

</description>
      <category>postman</category>
      <category>rust</category>
      <category>opensource</category>
      <category>tauri</category>
    </item>
  </channel>
</rss>
