<?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: Meet Shah</title>
    <description>The latest articles on DEV Community by Meet Shah (@meetshahbuilds).</description>
    <link>https://dev.to/meetshahbuilds</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%2F3930543%2Fd34dd0fd-62bd-433d-b835-67b6e8fcd497.png</url>
      <title>DEV Community: Meet Shah</title>
      <link>https://dev.to/meetshahbuilds</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/meetshahbuilds"/>
    <language>en</language>
    <item>
      <title>I built 342 browser-native dev tools - here's why everything runs client-side</title>
      <dc:creator>Meet Shah</dc:creator>
      <pubDate>Sat, 06 Jun 2026 07:56:30 +0000</pubDate>
      <link>https://dev.to/meetshahbuilds/i-built-342-browser-native-dev-tools-heres-why-everything-runs-client-side-4no0</link>
      <guid>https://dev.to/meetshahbuilds/i-built-342-browser-native-dev-tools-heres-why-everything-runs-client-side-4no0</guid>
      <description>&lt;h1&gt;
  
  
  I built 342 browser-native dev tools — here's why everything runs client-side
&lt;/h1&gt;

&lt;p&gt;Over the last few months I quietly built &lt;a href="https://zeroserver.tools" rel="noopener noreferrer"&gt;ZeroServer.tools&lt;/a&gt; — a suite of 342 free developer utilities. JSON formatter, Base64 encoder, hashing, JWT decoder, regex tester, image compressor, PDF tools, CSS generators, calculators, converters, and a lot more.&lt;/p&gt;

&lt;p&gt;But the design constraint I imposed from day one is what made this interesting to build: &lt;strong&gt;every single tool runs 100% in your browser. No backend. No server calls. Nothing you type ever leaves your device.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here's why I made that choice — and how the architecture works.&lt;/p&gt;




&lt;h2&gt;
  
  
  The problem I kept running into
&lt;/h2&gt;

&lt;p&gt;Whenever I needed a quick tool — format this JSON, encode this string, generate a hash — I'd find a site, paste my data in, and get my result.&lt;/p&gt;

&lt;p&gt;But I'd always wonder: &lt;em&gt;where did my data go?&lt;/em&gt; Most of these tools have a backend. Your JSON goes to their server. Your JWT (with its payload claims) gets decoded server-side. Your password gets "strength-checked" by someone else's API.&lt;/p&gt;

&lt;p&gt;Most sites are fine. But I was using them for work — sometimes with API keys, sometimes with internal JSON structures I probably shouldn't paste into random websites.&lt;/p&gt;

&lt;p&gt;So I built one where that problem doesn't exist.&lt;/p&gt;




&lt;h2&gt;
  
  
  The architecture: Next.js static export on Cloudflare Pages
&lt;/h2&gt;

&lt;p&gt;The entire site is a &lt;strong&gt;Next.js static export&lt;/strong&gt; (&lt;code&gt;output: "export"&lt;/code&gt; in &lt;code&gt;next.config.ts&lt;/code&gt;). No server-side rendering, no API routes, no Edge Functions. Just static HTML + JS files that Cloudflare serves from the edge.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// next.config.ts&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;nextConfig&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;NextConfig&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="na"&gt;output&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;export&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;trailingSlash&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This has a real constraint: &lt;strong&gt;you can't do anything server-side&lt;/strong&gt;. No &lt;code&gt;fs&lt;/code&gt;, no &lt;code&gt;fetch&lt;/code&gt; at build-time for dynamic data, no &lt;code&gt;crypto&lt;/code&gt; from Node. Everything that runs at request time has to be browser JavaScript.&lt;/p&gt;

&lt;p&gt;That constraint turned out to be the right forcing function.&lt;/p&gt;




&lt;h2&gt;
  
  
  How browser-native APIs cover 95% of what you need
&lt;/h2&gt;

&lt;p&gt;I expected to write a lot of polyfills. I didn't. The browser has gotten remarkably capable:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cryptography — Web Crypto API&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// SHA-256 hash of any string&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;buf&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;crypto&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;subtle&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;digest&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;SHA-256&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;TextEncoder&lt;/span&gt;&lt;span class="p"&gt;().&lt;/span&gt;&lt;span class="nf"&gt;encode&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;input&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;hex&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;Array&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="k"&gt;from&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;Uint8Array&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;buf&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
  &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;map&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;b&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;b&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toString&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;16&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;padStart&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;0&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
  &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;join&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;""&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No Node &lt;code&gt;crypto&lt;/code&gt; module needed. SHA-1, SHA-256, SHA-384, SHA-512 are all built into &lt;code&gt;crypto.subtle&lt;/code&gt;. HMAC, PBKDF2, AES-GCM — all there.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;File operations — FileReader + Canvas API&lt;/strong&gt;&lt;br&gt;
The image tools (compressor, resizer, format converter, watermark, EXIF stripper) all use &lt;code&gt;FileReader&lt;/code&gt; to read files and &lt;code&gt;HTMLCanvasElement&lt;/code&gt; to process them. The PDF tools use &lt;code&gt;pdf-lib&lt;/code&gt; compiled to WebAssembly — runs entirely in the browser.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Image compression — client-side only&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;img&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;Image&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="nx"&gt;img&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;onload&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;canvas&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;createElement&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;canvas&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="nx"&gt;canvas&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;width&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;img&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;width&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nx"&gt;canvas&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;height&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;img&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;height&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;ctx&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;canvas&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getContext&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;2d&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nx"&gt;ctx&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;drawImage&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;img&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="nx"&gt;canvas&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toBlob&lt;/span&gt;&lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="nx"&gt;blob&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="c1"&gt;// blob is the compressed image — never touched a server&lt;/span&gt;
  &lt;span class="p"&gt;},&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;image/webp&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;quality&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;span class="nx"&gt;img&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;src&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;URL&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;createObjectURL&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;file&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Random/UUID — crypto.randomUUID()&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;id&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;crypto&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;randomUUID&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt; &lt;span class="c1"&gt;// cryptographically random, browser-native&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  The SSR problem — and how I solved it
&lt;/h2&gt;

&lt;p&gt;Next.js does server-side rendering at build time (for static export). This means your component renders once in Node.js at build time, then hydrates in the browser.&lt;/p&gt;

&lt;p&gt;Problem: anything that uses &lt;code&gt;window&lt;/code&gt;, &lt;code&gt;document&lt;/code&gt;, &lt;code&gt;FileReader&lt;/code&gt;, &lt;code&gt;Date.now()&lt;/code&gt;, or &lt;code&gt;Math.random()&lt;/code&gt; will &lt;strong&gt;crash the build&lt;/strong&gt; or produce &lt;strong&gt;hydration mismatches&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The solution I settled on:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Pure logic in &lt;code&gt;useMemo&lt;/code&gt;&lt;/strong&gt; — formatting, parsing, encoding, converting. These are deterministic: same input → same output. No SSR problems.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Side effects in &lt;code&gt;useEffect&lt;/code&gt;&lt;/strong&gt; — anything that touches the DOM, reads files, or uses browser-only APIs. This runs client-side only.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Seeded PRNGs for "random" output&lt;/strong&gt; — for tools like the Lorem Ipsum generator and quote picker, I use a deterministic seeded PRNG so the SSR output matches the client render:&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;prng&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;seed&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;number&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt; &lt;span class="nx"&gt;number&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;abs&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;sin&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;seed&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="mf"&gt;1.618&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="nx"&gt;e8&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;%&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;Math.sin&lt;/code&gt; with a fixed seed is pure — same result in Node and browser. No hydration mismatch.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;new Date(string)&lt;/code&gt; is safe, &lt;code&gt;new Date()&lt;/code&gt; is not&lt;/strong&gt; — &lt;code&gt;new Date()&lt;/code&gt; returns the current time, which differs between build-time Node and client runtime. &lt;code&gt;new Date("2025-01-01T00:00:00Z")&lt;/code&gt; is deterministic and safe anywhere.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  The registry-driven architecture
&lt;/h2&gt;

&lt;p&gt;All 342 tools share a single source of truth: &lt;code&gt;lib/tools.ts&lt;/code&gt;. Every nav item, dashboard card, search result, sitemap entry, and SEO metadata is derived from this registry. Adding a new tool is:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create &lt;code&gt;app/&amp;lt;slug&amp;gt;/layout.tsx&lt;/code&gt; (SEO metadata)&lt;/li&gt;
&lt;li&gt;Create &lt;code&gt;app/&amp;lt;slug&amp;gt;/page.tsx&lt;/code&gt; (the tool)&lt;/li&gt;
&lt;li&gt;Add one entry to &lt;code&gt;lib/tools.ts&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Add chain links to &lt;code&gt;lib/toolChains.ts&lt;/code&gt; (the "try also" suggestions)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No config files, no separate sitemap file to maintain, no duplicate metadata.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's in the stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js 16&lt;/strong&gt; with App Router, static export&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;React 19&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS v4&lt;/strong&gt; (JIT, no config file)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Lucide React&lt;/strong&gt; for icons (one icon per tool)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cloudflare Pages&lt;/strong&gt; for hosting (generous free tier, global CDN)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;No database, no auth, no backend&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The tools people use most
&lt;/h2&gt;

&lt;p&gt;Based on the categories that get the most traffic from search:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;JSON Formatter&lt;/strong&gt; — the classic, still drives a lot of traffic&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Image Compressor&lt;/strong&gt; — "files never leave your browser" resonates for images&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PDF tools&lt;/strong&gt; — merge, split, rotate, all client-side (pdf-lib/WASM)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hash generators&lt;/strong&gt; — SHA-256, MD5, HMAC&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Base64&lt;/strong&gt; — evergreen for devs&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The privacy angle matters most for crypto/hashing and image/PDF tools, where people are most sensitive about where their files go.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://zeroserver.tools" rel="noopener noreferrer"&gt;zeroserver.tools&lt;/a&gt;&lt;/strong&gt; — 342 tools, 100% client-side, free, no signup.&lt;/p&gt;

&lt;p&gt;I'd genuinely love feedback — especially:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Which tools feel off or inaccurate?&lt;/li&gt;
&lt;li&gt;What's missing that you reach for regularly?&lt;/li&gt;
&lt;li&gt;Does the "nothing leaves your browser" claim come through clearly?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'm building this in the open and taking requests.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>tooling</category>
      <category>privacy</category>
    </item>
    <item>
      <title>Building a "Zero Server" App with Next.js 15 and Tailwind v4</title>
      <dc:creator>Meet Shah</dc:creator>
      <pubDate>Thu, 14 May 2026 08:07:54 +0000</pubDate>
      <link>https://dev.to/meetshahbuilds/building-a-zero-server-app-with-nextjs-15-and-tailwind-v4-bkp</link>
      <guid>https://dev.to/meetshahbuilds/building-a-zero-server-app-with-nextjs-15-and-tailwind-v4-bkp</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;As developers, we constantly rely on web-based utilities. Need to decode a JWT? Format a massive JSON payload? Generate a quick UUID? We usually just Google it and click the first link.&lt;br&gt;
But recently, I experienced a moment of "privacy anxiety." I was about to paste a production JWT containing sensitive claims into a random formatter site. I had no idea who owned the backend or if my token was being logged.&lt;br&gt;
I decided to build a suite of tools where developers never have to worry about that again. I built &lt;a href="https://zeroserver.tools" rel="noopener noreferrer"&gt;ZeroServer.tools&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;
  
  
  The "Zero Server" Architecture
&lt;/h2&gt;

&lt;p&gt;The core rule for this project was simple: &lt;strong&gt;No data leaves the browser.&lt;/strong&gt; &amp;gt;&lt;br&gt;
By keeping everything 100% client-side, the risk of data leakage drops to zero.&lt;/p&gt;
&lt;h2&gt;
  
  
  The Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Framework:&lt;/strong&gt; Next.js 15. The App Router makes building a multi-tool dashboard incredibly clean.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Styling:&lt;/strong&gt; Tailwind CSS v4. I created a custom "Obsidian" dark theme that developers are used to seeing in their IDEs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security:&lt;/strong&gt; Native Browser APIs. Instead of relying on external libraries for randomization, tools like the UUID generator utilize the browser's native &lt;code&gt;crypto.randomUUID()&lt;/code&gt; to ensure hardware-level cryptographic security.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deployment:&lt;/strong&gt; Cloudflare Pages. Serving static files directly from the edge means the tools load almost instantly, no matter where the user is located.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  The Result
&lt;/h2&gt;

&lt;p&gt;A hyper-fast, secure environment containing JSON/XML formatters, Base64/URL encoders, and secure generators.&lt;br&gt;
Building this reinforced a great lesson: not every web app needs a backend. Sometimes, pushing the processing power entirely to the client is not just cheaper—it's significantly safer.&lt;br&gt;
Check out the live project here: &lt;a href="https://zeroserver.tools" rel="noopener noreferrer"&gt;ZeroServer.tools&lt;/a&gt; and let me know what you think of the UI!&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>webdev</category>
      <category>nextjs</category>
      <category>showdev</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
