<?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: Charles Kariuki</title>
    <description>The latest articles on DEV Community by Charles Kariuki (@chazchege).</description>
    <link>https://dev.to/chazchege</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%2F3995188%2F50645ba5-ea2b-4aba-848d-46c4213e93e5.jpg</url>
      <title>DEV Community: Charles Kariuki</title>
      <link>https://dev.to/chazchege</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/chazchege"/>
    <language>en</language>
    <item>
      <title>How I Built a Suite of 16 Web Utilities with Zero Backend and $0 Hosting Costs</title>
      <dc:creator>Charles Kariuki</dc:creator>
      <pubDate>Sun, 21 Jun 2026 15:13:13 +0000</pubDate>
      <link>https://dev.to/chazchege/how-i-built-a-suite-of-16-web-utilities-with-zero-backend-and-0-hosting-costs-3ae0</link>
      <guid>https://dev.to/chazchege/how-i-built-a-suite-of-16-web-utilities-with-zero-backend-and-0-hosting-costs-3ae0</guid>
      <description>&lt;p&gt;We've all been there. You need to quickly compress a JPEG, split a PDF, or convert an ID card image to a document format. You Google it, click the first link, and immediately get hit with: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;A mandatory account signup. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A premium paywall because your file is 1MB over their "free tier" limit. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The uneasy feeling of uploading a sensitive personal document to a random, opaque cloud server just for a 2-second processing task.  &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'm a software engineering student, and frankly, I got tired of it. Modern browsers are incredibly powerful, yet we still route basic byte-manipulation tasks through external servers.&lt;br&gt;
So, I decided to build an alternative: &lt;a href="https://neatkitapp.com/" rel="noopener noreferrer"&gt;NeatKit&lt;/a&gt; — a zero-bloat web hub with 16 essential tools that run 100% client-side. No signups, no limits, and absolutely nothing leaves your machine.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Core Architecture: Why No Backend?&lt;/strong&gt;&lt;br&gt;
The design philosophy behind NeatKit is simple: Your browser is the server. By eliminating a backend entirely, I solved two massive problems at once:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Privacy: User data never leaves their device. If you inspect the Network tab in DevTools while running a heavy PDF merge or compression, you'll see exactly zero outbound data packets containing your files.&lt;/li&gt;
&lt;li&gt;Infrastructure Costs: Since the user's CPU handles all the heavy lifting, my hosting bill is exactly $0. The site scales infinitely without me needing to worry about server clusters, memory leaks, or execution timeouts.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;The Tech Stack (Squeezing the Browser)&lt;/strong&gt;&lt;br&gt;
To keep things lightning fast, I kept the foundational stack as close to the metal as possible:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Vanilla JavaScript &amp;amp; TailwindCSS: I wanted near-instant initial page loads. No massive framework overhead, just highly optimized script modules loaded as needed.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;HTML5 Canvas API: This does the heavy lifting for all image processing tools. When you drop an image into the compressor, JavaScript paints it to an offscreen canvas, samples the pixel data, and recalculates the compression ratios locally.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;pdf-lib: For handling PDF creation, splitting, merging, and compression. It allows NeatKit to manipulate document structures directly in-memory as binary arrays (Uint8Array), rendering new, optimized blobs in milliseconds.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🛠️ What's Under the Hood Right Now?&lt;/strong&gt;&lt;br&gt;
I've rolled out 16 utilities so far, broken down into a few categories:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Document Tools: &lt;a href="https://neatkitapp.com/tools/pdf-compress" rel="noopener noreferrer"&gt;PDF Compressor&lt;/a&gt; (just shipped today!), &lt;a href="https://neatkitapp.com/tools/pdf-merge" rel="noopener noreferrer"&gt;PDF Merge &amp;amp; Split&lt;/a&gt;, &lt;a href="https://neatkitapp.com/tools/images-to-pdf" rel="noopener noreferrer"&gt;Image to PDF convertor&lt;/a&gt;, and an "&lt;a href="https://neatkitapp.com/tools/id-card-to-pdf" rel="noopener noreferrer"&gt;ID Card to PDF&lt;/a&gt;" converter (great for printing/compliance)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Image Handling: Client-side &lt;a href="https://neatkitapp.com/tools/image-compress" rel="noopener noreferrer"&gt;image compressor&lt;/a&gt;, format converters, and SVG tools.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Dev Utilities: &lt;a href="https://neatkitapp.com/tools/base64" rel="noopener noreferrer"&gt;Base64 encoder/decoder&lt;/a&gt;, &lt;a href="https://neatkitapp.com/tools/qr-generator" rel="noopener noreferrer"&gt;QR code generator&lt;/a&gt;, and &lt;a href="https://neatkitapp.com/tools/color-converter" rel="noopener noreferrer"&gt;hex-to-RGB color converters&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Lessons Learned &amp;amp; What's Next&lt;/strong&gt;&lt;br&gt;
Building this completely solo taught me a massive lesson about asset optimization and cross-browser quirks—especially handling high-resolution image rendering on mobile browsers where RAM allocation is tightly throttled.&lt;/p&gt;

&lt;p&gt;The project is live at &lt;a href="https://neatkitapp.com/" rel="noopener noreferrer"&gt;neatkitapp.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Since this is a fresh launch, I’d love for the Dev.to community to check it out. Please, absolutely roast the UI, try to break the performance, or let me know what essential daily tool you think I should add to the suite next!&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>webdev</category>
      <category>showdev</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
