Show HN: PDFMergely – In-browser PDF tools that never upload your files
11–20 of 35 posts
Re: Show HN: PDFMergely – In-browser PDF tools that never upload your files
#12Question about merging: How do you handle merging multiple pdf that have forms? Are the form fields renamed to prevent form field name clashes? And what pdf toolkit do you use?
As a result, form fields typically aren't fillable after merging, and field name conflicts aren't an issue, so we don't rename fields.
We use @cantoo/pdf-lib (a maintained fork of pdf-lib) running entirely client-side in a Web Worker, so all processing happens locally in the browser and no files leave the user's device.
Re: Show HN: PDFMergely – In-browser PDF tools that never upload your files
#13Earlier quoted context omitted.
No one is going to take your word at face value. Assume people don't know how to open the developer tools.
A good point . open the Network tab" isn't a real answer for most people, and "trust me" isn't either. Two things that don't depend on either: (1) the offline test is something anyone can do ,load the page, turn off your wifi, and the tools keep working, which they couldn't if they relied on a server; (2) the site ships a Content-Security-Policy that blocks outbound connections, so it's the browser enforcing it, not…
Re: Show HN: PDFMergely – In-browser PDF tools that never upload your files
#14Re: Show HN: PDFMergely – In-browser PDF tools that never upload your files
#15Why is it that everyone now duplicates/vibe-codes PDF tool websites? It seems that there is one new each week for about half a year now with none providing any outstanding features over the others.
Re: Show HN: PDFMergely – In-browser PDF tools that never upload your files
#16Why is it that everyone now duplicates/vibe-codes PDF tool websites? It seems that there is one new each week for about half a year now with none providing any outstanding features over the others.
Re: Show HN: PDFMergely – In-browser PDF tools that never upload your files
#17Author here. Quick note on how the "no upload" claim actually works, since it deserves scrutiny. There's no upload endpoint to send files to. When you pick a file, the browser hands the app the bytes directly; the work runs in a Web Worker on your device, with WebAssembly for the heavier parts like encryption. The finished PDF is built locally and downloaded. The page is also locked down with a strict CSP so file dat…
Re: Show HN: PDFMergely – In-browser PDF tools that never upload your files
#18Re: Show HN: PDFMergely – In-browser PDF tools that never upload your files
#19Re: Show HN: PDFMergely – In-browser PDF tools that never upload your files
#20Why is it that everyone now duplicates/vibe-codes PDF tool websites? It seems that there is one new each week for about half a year now with none providing any outstanding features over the others.
However, there are older tools that do this, such as BentoPDF (which is also open source) [1].