<?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>Forem: Kendall Booker</title>
    <description>The latest articles on Forem by Kendall Booker (@kendallbooker).</description>
    <link>https://forem.com/kendallbooker</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%2F3857224%2F591c7603-b0ce-4871-8b58-cb81c5689562.jpg</url>
      <title>Forem: Kendall Booker</title>
      <link>https://forem.com/kendallbooker</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/kendallbooker"/>
    <language>en</language>
    <item>
      <title>I rebuilt VS Code on Tauri instead of Electron and just open-sourced it</title>
      <dc:creator>Kendall Booker</dc:creator>
      <pubDate>Thu, 02 Apr 2026 08:53:24 +0000</pubDate>
      <link>https://forem.com/kendallbooker/i-rebuilt-vs-code-on-tauri-instead-of-electron-and-just-open-sourced-it-53ao</link>
      <guid>https://forem.com/kendallbooker/i-rebuilt-vs-code-on-tauri-instead-of-electron-and-just-open-sourced-it-53ao</guid>
      <description>&lt;p&gt;VS Code is an incredible editor. But every install ships a full copy of Chromium and Node.js. 775MB installed. On a machine running multiple dev tools, that adds up fast.&lt;/p&gt;

&lt;p&gt;I wanted to know what happens if you rip all of that out and rebuild it on Tauri. So I did.&lt;/p&gt;

&lt;p&gt;The result is &lt;strong&gt;SideX&lt;/strong&gt;. 31MB installed. Same VS Code codebase. Different runtime.&lt;/p&gt;

&lt;h2&gt;
  
  
  What this actually is
&lt;/h2&gt;

&lt;p&gt;This isn't a "VS Code inspired" toy editor. This is the actual VS Code source tree:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;5,687 TypeScript files&lt;/li&gt;
&lt;li&gt;335 CSS files&lt;/li&gt;
&lt;li&gt;82 bundled language extensions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All running on Tauri v2 with a Rust backend instead of Electron. Zero Electron imports remaining in the codebase.&lt;/p&gt;

&lt;p&gt;Tauri uses your OS's native webview (WebKit on macOS, WebView2 on Windows) instead of shipping its own Chromium. That one architectural change is responsible for most of the size difference.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Rust backend does
&lt;/h2&gt;

&lt;p&gt;The Tauri side isn't a thin wrapper. It's 49 commands across 9 modules:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Terminal&lt;/strong&gt; - real PTY via portable-pty (replaces node-pty)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Git&lt;/strong&gt; - 17 commands: status, diff, log, branch, stash, push/pull, clone&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;File system&lt;/strong&gt; - read, write, stat, watch (via notify crate)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Storage&lt;/strong&gt; - SQLite via rusqlite (replaces @vscode/sqlite3)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Search&lt;/strong&gt; - recursive text and file search with smart filtering&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Extension host&lt;/strong&gt; - Node.js sidecar so VS Code extensions still work&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;HTTP proxy&lt;/strong&gt; - CORS bypass for the Open VSX extension marketplace&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Extensions load from Open VSX instead of Microsoft's proprietary gallery, so the whole stack is open.&lt;/p&gt;

&lt;h2&gt;
  
  
  The numbers
&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;SideX (Tauri)&lt;/th&gt;
&lt;th&gt;VS Code (Electron)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Installed size&lt;/td&gt;
&lt;td&gt;31.2 MB&lt;/td&gt;
&lt;td&gt;775.1 MB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bundled browser engine&lt;/td&gt;
&lt;td&gt;None (OS webview)&lt;/td&gt;
&lt;td&gt;Full Chromium&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bundled JS runtime&lt;/td&gt;
&lt;td&gt;None (Rust backend)&lt;/td&gt;
&lt;td&gt;Full Node.js&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Backend language&lt;/td&gt;
&lt;td&gt;Rust&lt;/td&gt;
&lt;td&gt;JavaScript/C++&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Why this matters for AI editors
&lt;/h2&gt;

&lt;p&gt;Every AI coding tool right now, Cursor, Copilot, Windsurf, Cline, is built on top of VS Code's Electron stack. That means every one of them ships a full Chromium. A Tauri-based foundation is a fraction of the size with a Rust backend that's actually fast. Whether or not SideX itself becomes the thing people use, proving this architecture works matters.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current state
&lt;/h2&gt;

&lt;p&gt;I'll be honest. This is an early release. The core editor, terminal, file explorer, git, themes, and extensions all work. But a lot of stuff is still rough or incomplete.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What works:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Core Monaco editor with syntax highlighting&lt;/li&gt;
&lt;li&gt;Integrated terminal (real PTY)&lt;/li&gt;
&lt;li&gt;File explorer&lt;/li&gt;
&lt;li&gt;Basic Git integration&lt;/li&gt;
&lt;li&gt;Theme support&lt;/li&gt;
&lt;li&gt;Extension loading from Open VSX&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What still needs work:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Extension host (not all extensions load yet)&lt;/li&gt;
&lt;li&gt;Debugging (scaffolded, not functional)&lt;/li&gt;
&lt;li&gt;Settings UI, search, multi-window&lt;/li&gt;
&lt;li&gt;Windows and Linux testing&lt;/li&gt;
&lt;li&gt;General stability&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'm releasing it early because a lot of people asked to help build it out, and more hands means this gets stable faster.&lt;/p&gt;

&lt;h2&gt;
  
  
  Contribute
&lt;/h2&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/Sidenai/sidex" rel="noopener noreferrer"&gt;https://github.com/Sidenai/sidex&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Discord: discord.gg/8CUCnEAC4J&lt;/p&gt;

&lt;p&gt;Find something broken, fix it, open a PR. You get added as a contributor.&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>cli</category>
      <category>programming</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
