<?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: Lyon</title>
    <description>The latest articles on DEV Community by Lyon (@lyon916).</description>
    <link>https://dev.to/lyon916</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%2F3982673%2F3ca2f1fa-c503-4186-8c04-b1f2d77a6112.jpeg</url>
      <title>DEV Community: Lyon</title>
      <link>https://dev.to/lyon916</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lyon916"/>
    <language>en</language>
    <item>
      <title>Arc — A lightweight browser-based API client with built-in CORS proxy</title>
      <dc:creator>Lyon</dc:creator>
      <pubDate>Sat, 13 Jun 2026 12:49:57 +0000</pubDate>
      <link>https://dev.to/lyon916/arc-a-lightweight-browser-based-api-client-with-built-in-cors-proxy-5e7i</link>
      <guid>https://dev.to/lyon916/arc-a-lightweight-browser-based-api-client-with-built-in-cors-proxy-5e7i</guid>
      <description>&lt;p&gt;I got tired of Postman being bloated and slow, so I vibe-coded a lightweight alternative.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Arc&lt;/strong&gt; (API Request Console) is a browser-based API client that just works — open the page and start debugging.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔗 The Killer Feature: One-Click CORS Bypass
&lt;/h2&gt;

&lt;p&gt;Browser-based API tools all share one fatal flaw: CORS. You paste a URL, hit send, and get &lt;code&gt;blocked by CORS policy&lt;/code&gt;. In Arc, click the 🛡 shield icon and every request routes through the built-in proxy.&lt;/p&gt;

&lt;p&gt;The proxy is a ~80-line &lt;a href="https://github.com/lyon916/Arc/tree/main/worker" rel="noopener noreferrer"&gt;Cloudflare Worker&lt;/a&gt; — fully open-source, no logging, no storage. Deploy your own in 30 seconds.&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.amazonaws.com%2Fuploads%2Farticles%2Fswpcpbb02n1wafywpb4h.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.amazonaws.com%2Fuploads%2Farticles%2Fswpcpbb02n1wafywpb4h.jpeg" alt="Arc Screenshot" width="800" height="441"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  ✨ Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🛡 &lt;strong&gt;Built-in CORS Proxy&lt;/strong&gt; — open-source, self-hostable&lt;/li&gt;
&lt;li&gt;🎨 &lt;strong&gt;17 Themes&lt;/strong&gt; — Dracula, Nord, Catppuccin, Tokyo Night, and more&lt;/li&gt;
&lt;li&gt;📤 &lt;strong&gt;Code Generation&lt;/strong&gt; — cURL, Python, Go, Node.js snippets&lt;/li&gt;
&lt;li&gt;🌍 &lt;strong&gt;Environment Variables&lt;/strong&gt; — multi-env with &lt;code&gt;{{varname}}&lt;/code&gt; syntax&lt;/li&gt;
&lt;li&gt;📱 &lt;strong&gt;PWA Support&lt;/strong&gt; — install to desktop, works offline&lt;/li&gt;
&lt;li&gt;🔒 &lt;strong&gt;Local-first&lt;/strong&gt; — all data in IndexedDB, nothing leaves your browser&lt;/li&gt;
&lt;li&gt;🌐 &lt;strong&gt;i18n&lt;/strong&gt; — English / 中文&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🛠 Tech Stack
&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;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Framework&lt;/td&gt;
&lt;td&gt;React 19&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Build&lt;/td&gt;
&lt;td&gt;Vite 6&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Language&lt;/td&gt;
&lt;td&gt;TypeScript&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Styling&lt;/td&gt;
&lt;td&gt;TailwindCSS 4 + DaisyUI 5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;State&lt;/td&gt;
&lt;td&gt;Zustand 5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Storage&lt;/td&gt;
&lt;td&gt;Dexie 4 (IndexedDB)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  🚀 Try It
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Live:&lt;/strong&gt; &lt;a href="https://arcapi.xyz" rel="noopener noreferrer"&gt;arcapi.xyz&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/lyon916/Arc" rel="noopener noreferrer"&gt;lyon916/Arc&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Feedback welcome!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>react</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
