<?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: RedfireForge</title>
    <description>The latest articles on DEV Community by RedfireForge (@redfireforge).</description>
    <link>https://dev.to/redfireforge</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%2F4094892%2F7cc259d1-01a5-45bf-b1f5-6d5bcd6bf20b.png</url>
      <title>DEV Community: RedfireForge</title>
      <link>https://dev.to/redfireforge</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/redfireforge"/>
    <language>en</language>
    <item>
      <title>Why I built RedfireForge: one workbench for six API protocols</title>
      <dc:creator>RedfireForge</dc:creator>
      <pubDate>Wed, 16 Sep 2026 12:38:51 +0000</pubDate>
      <link>https://dev.to/redfireforge/why-i-built-redfireforge-one-workbench-for-six-api-protocols-mk9</link>
      <guid>https://dev.to/redfireforge/why-i-built-redfireforge-one-workbench-for-six-api-protocols-mk9</guid>
      <description>&lt;p&gt;I was tired of keeping four tools open to test one service.&lt;/p&gt;

&lt;p&gt;HTTP in a REST client. GraphQL in another tab. A gRPC call in the&lt;br&gt;
terminal. A WebSocket in &lt;code&gt;wscat&lt;/code&gt;. Kafka somewhere else. Load testing&lt;br&gt;
in a fifth window. None of them shared variables or a single report.&lt;/p&gt;

&lt;p&gt;RedfireForge is my attempt to put that in one workbench.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it is
&lt;/h2&gt;

&lt;p&gt;An open-source visual API testing and load-testing app for &lt;strong&gt;HTTP,&lt;br&gt;
GraphQL, gRPC, WebSocket, SSE, and Kafka&lt;/strong&gt;. Same engine in the&lt;br&gt;
desktop app (Tauri + React), the browser, and the CLI.&lt;/p&gt;

&lt;p&gt;You can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Send ad-hoc requests (Postman-style client + OpenAPI catalog)&lt;/li&gt;
&lt;li&gt;Chain calls in a &lt;strong&gt;workflow designer&lt;/strong&gt; (variables, conditions, fork/join)&lt;/li&gt;
&lt;li&gt;Run load tests with assertions&lt;/li&gt;
&lt;li&gt;Stand up a &lt;strong&gt;local mock server&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Run the same tests in CI: &lt;code&gt;npm install -g redfireforge-cli&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There is an optional &lt;strong&gt;Learning Hub&lt;/strong&gt; desktop build with guided&lt;br&gt;
lessons. The hosted site is the browser app, not that lesson player.&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%2F16xawntqnytz0i749axi.png" 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%2F16xawntqnytz0i749axi.png" alt=" " width="800" height="449"&gt;&lt;/a&gt;&lt;br&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%2F71ic001zkv5wetzm9xym.png" 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%2F71ic001zkv5wetzm9xym.png" alt=" " width="799" height="448"&gt;&lt;/a&gt;&lt;br&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%2Fpf8x52go2c06wti4ys3o.png" 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%2Fpf8x52go2c06wti4ys3o.png" alt=" " width="799" height="448"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why open source
&lt;/h2&gt;

&lt;p&gt;I need this on my machine, against local ports and private networks.&lt;br&gt;
A hosted-only tool cannot do that. AGPL v3 keeps the code open.&lt;/p&gt;

&lt;p&gt;Cloud-hosted load testing is on a waitlist — it is not required to&lt;br&gt;
use the app today.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I would like feedback on
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Which protocols you actually need in one UI&lt;/li&gt;
&lt;li&gt;Whether the workflow designer is understandable&lt;/li&gt;
&lt;li&gt;What is missing for CI&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/redfireforge/redfireforge-public" rel="noopener noreferrer"&gt;https://github.com/redfireforge/redfireforge-public&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Live demo: &lt;a href="https://demo.redfireforge.com" rel="noopener noreferrer"&gt;https://demo.redfireforge.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Download: &lt;a href="https://redfireforge.com/download" rel="noopener noreferrer"&gt;https://redfireforge.com/download&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Cloud waitlist: &lt;a href="https://tally.so/r/1AaNzQ?source=devto" rel="noopener noreferrer"&gt;https://tally.so/r/1AaNzQ?source=devto&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>opensource</category>
      <category>testing</category>
      <category>api</category>
      <category>devtools</category>
    </item>
  </channel>
</rss>
