<?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: abeni16</title>
    <description>The latest articles on DEV Community by abeni16 (@abeni16).</description>
    <link>https://dev.to/abeni16</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%2F3917479%2F8f181b8d-1e45-4bcc-8642-7de83149fce3.jpeg</url>
      <title>DEV Community: abeni16</title>
      <link>https://dev.to/abeni16</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abeni16"/>
    <language>en</language>
    <item>
      <title>I Built a PostgreSQL Admin Tool in Rust — ~6MB, No Electron, Sub-1s Startup</title>
      <dc:creator>abeni16</dc:creator>
      <pubDate>Thu, 07 May 2026 08:24:03 +0000</pubDate>
      <link>https://dev.to/abeni16/i-built-a-postgresql-admin-tool-in-rust-6mb-no-electron-sub-1s-startup-3eeg</link>
      <guid>https://dev.to/abeni16/i-built-a-postgresql-admin-tool-in-rust-6mb-no-electron-sub-1s-startup-3eeg</guid>
      <description>&lt;p&gt;Every time I opened pgAdmin, I lost a little bit of my soul.&lt;/p&gt;

&lt;p&gt;600MB download. 15-second startup. A UI that feels like it was designed in 2008. And all of that just to run a quick query or peek at a table.&lt;/p&gt;

&lt;p&gt;So I built something different.&lt;/p&gt;

&lt;h2&gt;
  
  
  Introducing VeloxDB
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;VeloxDB&lt;/strong&gt; is a native PostgreSQL admin tool built with Rust and Tauri. It's fast, lightweight, and designed to get out of your way.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;~6MB download&lt;/strong&gt; (not a typo)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sub-1 second startup&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Zero Electron&lt;/strong&gt; — true native binary&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;~50MB memory usage&lt;/strong&gt; vs 300MB–1GB+ for the alternatives&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It's currently in beta and free under the MIT license. No subscriptions, no payments, no telemetry.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://veloxdb.dev" rel="noopener noreferrer"&gt;veloxdb.dev&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I Built It
&lt;/h2&gt;

&lt;p&gt;The PostgreSQL tooling landscape in 2025 is... heavy. pgAdmin ships at 200MB+ and runs on Python/JS. DBeaver is a Java app that eats memory for breakfast. TablePlus is polished but paid.&lt;/p&gt;

&lt;p&gt;I wanted something that:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Opens instantly&lt;/strong&gt; — my terminal is faster than my DB GUI, and that's wrong&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Doesn't cost RAM&lt;/strong&gt; I need for Docker, local DBs, and editors&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Feels native&lt;/strong&gt; — not a web app stapled inside Electron&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Has a visual schema designer&lt;/strong&gt; — without needing a separate $200/year SaaS tool&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So I built VeloxDB.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's Inside
&lt;/h2&gt;

&lt;h3&gt;
  
  
  ⚡ Lightning Fast Queries
&lt;/h3&gt;

&lt;p&gt;Built with Rust end-to-end. Table browsing, schema changes, and query execution happen instantly. No web view lag, no GC pauses.&lt;/p&gt;

&lt;h3&gt;
  
  
  🎨 Visual ER Diagram Designer
&lt;/h3&gt;

&lt;p&gt;This is the feature I'm most proud of. Instead of writing DDL by hand, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Drag and drop tables onto a canvas&lt;/li&gt;
&lt;li&gt;Connect them visually to define foreign key relationships&lt;/li&gt;
&lt;li&gt;Generate migrations with one click&lt;/li&gt;
&lt;li&gt;Track schema diffs&lt;/li&gt;
&lt;li&gt;Export to SQL, PNG, or PDF&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It's a full visual schema designer — built in, no separate tools, no extra cost.&lt;/p&gt;

&lt;h3&gt;
  
  
  🔐 Security First
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Credentials stored in the &lt;strong&gt;macOS Keychain&lt;/strong&gt; — no plaintext config files sitting around&lt;/li&gt;
&lt;li&gt;SSH tunneling and SSL/TLS encryption supported out of the box&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Zero telemetry&lt;/strong&gt; — your schemas, queries, and credentials never leave your machine&lt;/li&gt;
&lt;li&gt;Auto-lock after idle&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🧠 Smart SQL Autocomplete
&lt;/h3&gt;

&lt;p&gt;Schema-aware IntelliSense that understands your actual tables and columns. Not just keyword completion — it knows your data model.&lt;/p&gt;

&lt;h3&gt;
  
  
  🔗 Stable Connections
&lt;/h3&gt;

&lt;p&gt;Persistent connections that don't drop mid-session. No re-auth loops, no flaky reconnects.&lt;/p&gt;




&lt;h2&gt;
  
  
  Comparison at a Glance
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;VeloxDB&lt;/th&gt;
&lt;th&gt;pgAdmin / DBeaver&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Download Size&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;~6MB&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;200MB – 600MB+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Memory Usage&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;~50MB&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;300MB – 1GB+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Startup Time&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;&amp;lt; 1 second&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;5–15 seconds&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Built With&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Rust / Tauri&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Electron / Java&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Visual Model Designer&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Built-in&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Separate tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Schema-aware Autocomplete&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Yes&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Basic&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Keychain Integration&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Native&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Telemetry&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;None&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Varies&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Platform Support
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;✅ &lt;strong&gt;macOS&lt;/strong&gt; (Apple Silicon &amp;amp; Intel) — available now&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;Windows&lt;/strong&gt; (x64) — available now&lt;/li&gt;
&lt;li&gt;🔜 &lt;strong&gt;Linux&lt;/strong&gt; (x64 &amp;amp; ARM64) — coming soon&lt;/li&gt;
&lt;li&gt;🔜 Homebrew and AUR packages in the works&lt;/li&gt;
&lt;/ul&gt;




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

&lt;p&gt;VeloxDB is fully open source under the MIT license. No feature gates, no "community vs pro" split — everything is free.&lt;/p&gt;

&lt;p&gt;⭐ &lt;a href="https://github.com/abeni16/veloxdb" rel="noopener noreferrer"&gt;Star it on GitHub&lt;/a&gt; — every star genuinely helps.&lt;/p&gt;




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

&lt;p&gt;Download is at &lt;strong&gt;&lt;a href="https://veloxdb.dev" rel="noopener noreferrer"&gt;veloxdb.dev&lt;/a&gt;&lt;/strong&gt; — it's under 6MB so you have no excuse not to try it.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;macOS note:&lt;/strong&gt; If you see a security warning on first launch, run:&lt;/p&gt;


&lt;pre class="highlight shell"&gt;&lt;code&gt;xattr &lt;span class="nt"&gt;-cr&lt;/span&gt; /Applications/veloxdb.app
&lt;/code&gt;&lt;/pre&gt;


&lt;p&gt;This is a known Gatekeeper issue with unsigned binaries — we're working on signing.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;I'd love feedback from the dev community. What features matter most to you in a DB GUI? What would make you actually switch away from your current tool?&lt;/p&gt;

&lt;p&gt;Drop a comment or open an issue on GitHub. 🙏&lt;br&gt;
&lt;a href="https://github.com/abeni16/veloxdb" rel="noopener noreferrer"&gt;https://github.com/abeni16/veloxdb&lt;/a&gt;&lt;/p&gt;

</description>
      <category>postgres</category>
      <category>pgadmin</category>
      <category>productivity</category>
      <category>database</category>
    </item>
  </channel>
</rss>
