<?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: swifttooly</title>
    <description>The latest articles on DEV Community by swifttooly (@swifttooly).</description>
    <link>https://dev.to/swifttooly</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%2F4006974%2Ff90bc3ff-1778-4e03-ae90-56b61daae394.png</url>
      <title>DEV Community: swifttooly</title>
      <link>https://dev.to/swifttooly</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/swifttooly"/>
    <language>en</language>
    <item>
      <title>Why I built 50+ browser-based tools with zero backend</title>
      <dc:creator>swifttooly</dc:creator>
      <pubDate>Sun, 28 Jun 2026 20:35:00 +0000</pubDate>
      <link>https://dev.to/swifttooly/why-i-built-50-browser-based-tools-with-zero-backend-3cg1</link>
      <guid>https://dev.to/swifttooly/why-i-built-50-browser-based-tools-with-zero-backend-3cg1</guid>
      <description>&lt;p&gt;For years, every time I needed to merge a PDF or compress an image online, I had to upload my private files to some random server and just hope they got deleted. That always felt wrong.&lt;/p&gt;

&lt;p&gt;So I started building small tools that do everything in the browser — no upload, no backend, no database. The files never leave the user's device. I ended up with 50+ of them, and I want to share what I learned about going fully client-side.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why client-side?
&lt;/h2&gt;

&lt;p&gt;Three big wins:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Privacy: the user's files never touch a server. Nothing to leak, nothing to store, nothing to comply with.&lt;/li&gt;
&lt;li&gt;Cost: no server means no hosting bill that scales with traffic. A static site can handle millions of users.&lt;/li&gt;
&lt;li&gt;Speed: no upload/download round-trip. The work happens instantly on the user's machine.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The browser can do more than people think
&lt;/h2&gt;

&lt;p&gt;Most "simple" tools don't actually need a server. Modern browser APIs cover a huge amount:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Canvas API — resize, crop, compress, and convert images entirely in memory.&lt;/li&gt;
&lt;li&gt;File API + Blob — read user files and trigger downloads without ever uploading.&lt;/li&gt;
&lt;li&gt;Web Crypto API — hashing (SHA-256, etc.) natively, no library needed.&lt;/li&gt;
&lt;li&gt;Libraries like pdf-lib and pdf.js — full PDF manipulation (merge, split, rotate) on the client.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For example, compressing an image is just: read the file → draw it to a canvas → re-export at a lower quality → download the blob. No server in the loop.&lt;/p&gt;

&lt;h2&gt;
  
  
  What does NOT work client-side
&lt;/h2&gt;

&lt;p&gt;Being honest about the limits, because this matters:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Downloading videos from YouTube/TikTok — blocked by CORS, needs a server.&lt;/li&gt;
&lt;li&gt;Anything needing live data (real-time currency rates, etc.) — needs an API.&lt;/li&gt;
&lt;li&gt;Heavy video transcoding — technically possible with WASM but painful and slow.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Knowing what &lt;em&gt;can't&lt;/em&gt; be done client-side saved me from shipping broken tools.&lt;/p&gt;

&lt;h2&gt;
  
  
  The result
&lt;/h2&gt;

&lt;p&gt;I put all of this into &lt;a href="https://swifttooly.com" rel="noopener noreferrer"&gt;[SwiftTooly]&lt;/a&gt; — a free collection of browser-based tools (PDF, image, text, QR, converters, dev utilities). Everything runs locally, no sign-up.&lt;/p&gt;

&lt;p&gt;Happy to answer questions about any of the implementations — the image and PDF stuff especially has some fun edge cases.&lt;/p&gt;

&lt;p&gt;What other tools do you think genuinely don't need a backend?&lt;/p&gt;

</description>
      <category>privacy</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
