<?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: hwlsniper</title>
    <description>The latest articles on DEV Community by hwlsniper (@hwlsniper).</description>
    <link>https://dev.to/hwlsniper</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%2F3952557%2F14366364-ccb4-4228-8924-6836c5332164.png</url>
      <title>DEV Community: hwlsniper</title>
      <link>https://dev.to/hwlsniper</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hwlsniper"/>
    <language>en</language>
    <item>
      <title>I Built a Free PDF Toolbox That Runs Entirely in Your Browser (Zero Uploads)</title>
      <dc:creator>hwlsniper</dc:creator>
      <pubDate>Tue, 26 May 2026 15:17:12 +0000</pubDate>
      <link>https://dev.to/hwlsniper/i-built-a-free-pdf-toolbox-that-runs-entirely-in-your-browser-zero-uploads-4e4h</link>
      <guid>https://dev.to/hwlsniper/i-built-a-free-pdf-toolbox-that-runs-entirely-in-your-browser-zero-uploads-4e4h</guid>
      <description>&lt;h2&gt;
  
  
  Why I Built It
&lt;/h2&gt;

&lt;p&gt;I needed to compress a PDF last week. The first 5 Google results all required uploading my file to a server. Some wanted my email. Others limited me to 2 files per day.&lt;/p&gt;

&lt;p&gt;I'm a developer. I thought: &lt;em&gt;we have WebAssembly, Web Workers, and the File API — why are we still uploading PDFs to random servers?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;So I built &lt;a href="https://pdftoolbox-three.vercel.app" rel="noopener noreferrer"&gt;PDF Toolbox&lt;/a&gt; — a collection of PDF tools that process everything &lt;strong&gt;locally in your browser.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Compress PDF&lt;/strong&gt; — reduce file size while keeping quality&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Merge PDF&lt;/strong&gt; — combine multiple PDFs into one&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Split PDF&lt;/strong&gt; — extract pages or split into individual files&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PDF to JPG&lt;/strong&gt; — convert each page to an image&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;JPG to PDF&lt;/strong&gt; — bundle images into a PDF&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unlock PDF&lt;/strong&gt; — remove password protection (if you know the password)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;p&gt;Built with &lt;strong&gt;Next.js 16 + TypeScript + Tailwind CSS&lt;/strong&gt;, deployed on Vercel. The PDF processing uses client-side libraries so files never touch a server. Every tool works offline once the page is loaded.&lt;/p&gt;

&lt;h2&gt;
  
  
  Design Decisions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Privacy-first architecture
&lt;/h3&gt;

&lt;p&gt;This was my number one constraint. All PDF processing runs in the browser using the Web Worker API. When you drop a file, it stays in your browser's memory — nothing is sent to any backend. You can turn off your internet connection after the page loads and everything still works.&lt;/p&gt;

&lt;h3&gt;
  
  
  No limits, no registration
&lt;/h3&gt;

&lt;p&gt;Most PDF tools gate features behind accounts or daily limits. PDF Toolbox has no concept of users — there's no database, no login, no tracking. Use it as many times as you want.&lt;/p&gt;

&lt;h3&gt;
  
  
  Simple UI, complex backend
&lt;/h3&gt;

&lt;p&gt;I kept the interface dead simple: drag-and-drop, one-click processing, instant download. But under the hood there's a lot going on — streaming file reads, memory-efficient processing for large PDFs, and proper error handling for edge cases like encrypted files and corrupted PDFs.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;PDF to Word&lt;/strong&gt; — coming soon&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Watermark PDF&lt;/strong&gt; — add text/image watermarks&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dark mode&lt;/strong&gt; — working on it&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mobile PWA&lt;/strong&gt; — installable offline app&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;Head over to &lt;a href="https://pdftoolbox-three.vercel.app" rel="noopener noreferrer"&gt;pdftoolbox-three.vercel.app&lt;/a&gt; and try compressing a PDF. No signup, no upload, no catch.&lt;/p&gt;

&lt;p&gt;I'd love feedback from the Dev.to community! What PDF features would you find most useful? Drop a comment below.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>tutorial</category>
      <category>javascript</category>
      <category>ai</category>
    </item>
    <item>
      <title>I Built a Privacy-First PDF Toolbox — Your Files Never Leave the Browser</title>
      <dc:creator>hwlsniper</dc:creator>
      <pubDate>Tue, 26 May 2026 13:04:15 +0000</pubDate>
      <link>https://dev.to/hwlsniper/i-built-a-privacy-first-pdf-toolbox-your-files-never-leave-the-browser-1kn4</link>
      <guid>https://dev.to/hwlsniper/i-built-a-privacy-first-pdf-toolbox-your-files-never-leave-the-browser-1kn4</guid>
      <description>&lt;p&gt;Every online PDF tool I've used uploads your documents to their servers. Tax returns, contracts, medical records — they all go to some third-party server for processing. That bothered me enough to build an alternative.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://pdftoolbox-three.vercel.app" rel="noopener noreferrer"&gt;PDF Toolbox&lt;/a&gt; is a set of PDF tools where &lt;strong&gt;everything runs locally in your browser&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  How it works
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;You select a PDF file&lt;/li&gt;
&lt;li&gt;The file loads into browser memory (ArrayBuffer)&lt;/li&gt;
&lt;li&gt;pdf-lib processes it entirely in the browser&lt;/li&gt;
&lt;li&gt;You download the result&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The file never leaves your computer. No upload. No server. No privacy risk.&lt;/p&gt;

&lt;h3&gt;
  
  
  Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Compress PDF (reduce file size)&lt;/li&gt;
&lt;li&gt;Merge multiple PDFs into one&lt;/li&gt;
&lt;li&gt;Split PDF into individual pages&lt;/li&gt;
&lt;li&gt;Convert PDF to JPG images&lt;/li&gt;
&lt;li&gt;Convert JPG images to PDF&lt;/li&gt;
&lt;li&gt;Unlock password-protected PDFs&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Why I built it
&lt;/h3&gt;

&lt;p&gt;I handle sensitive documents regularly and the thought of uploading them to random servers makes me uncomfortable. With WebAssembly and modern PDF libraries like pdf-lib, there's no technical reason PDF tools need server-side processing anymore.&lt;/p&gt;

&lt;h3&gt;
  
  
  Tech Stack
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js 16&lt;/strong&gt; with App Router&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;pdf-lib&lt;/strong&gt; for PDF generation and manipulation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;pdfjs-dist&lt;/strong&gt; for PDF rendering&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS 4&lt;/strong&gt; for styling&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vercel&lt;/strong&gt; for hosting&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Try it out
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://pdftoolbox-three.vercel.app" rel="noopener noreferrer"&gt;PDF Toolbox&lt;/a&gt; — completely free, no registration, no limits.&lt;/p&gt;

&lt;p&gt;Feedback and feature requests welcome!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;GitHub: &lt;a href="https://github.com/hwlsniper/pdftoolbox" rel="noopener noreferrer"&gt;github.com/hwlsniper/pdftoolbox&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>webdev</category>
      <category>javascript</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
