Building a Privacy-First PDF Toolkit That Runs Entirely in Your Browser
The Problem Ever needed to merge a few PDFs or compress a large file, only to find yourself uploading sensitive documents to some random website? I've been there too many times. Most online PDF too...

Source: DEV Community
The Problem Ever needed to merge a few PDFs or compress a large file, only to find yourself uploading sensitive documents to some random website? I've been there too many times. Most online PDF tools: Upload your files to their servers Have unclear privacy policies Are bloated with ads and upsells Require registration for basic features I wanted something better: a tool that's fast, free, and respects your privacy. The Solution I built PDF Tools Online - a completely client-side PDF processor. Your files never leave your device. Core Features š PDF Merge - Combine multiple PDFs into one document āļø PDF Split - Extract specific pages or split into separate files š PDF Compress - Reduce file size without significant quality loss š¼ļø PDF to Image - Convert PDF pages to PNG/JPG š· Image to PDF - Create PDFs from multiple images Tech Stack The app is built with: React - For the UI pdf-lib - Client-side PDF manipulation Tailwind CSS - Styling Vite - Build tool Why Client-Side Processing? P