Built a privacy-first PDF tool suite using PDF.js - client-side only, no uploads #21852
iqbalhssn78
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi PDF.js community,
Sharing a real-world production implementation using PDF.js (pdfjs-dist) for client-side PDF text extraction and rendering.
What we built: ihaveatoolforthat.com - a suite of browser-based PDF and file tools that process everything locally with no uploads.
How PDF.js is used:
Why we chose PDF.js:
The privacy constraint was architectural - we needed PDF processing that could run entirely client-side with zero server involvement. PDF.js made that possible at scale.
Technical implementation writeup: https://ihaveatoolforthat.com/privacy-guarantee (covers the full in-browser pipeline: FileReader ? ArrayBuffer ? PDF.js Worker ? output ? Blob ? download)
Happy to share specific integration details if useful for the community. Also using pdf-lib alongside PDF.js for PDF creation/modification - the two complement each other well for full client-side PDF workflows.
All reactions