Most "merge PDF" sites work the same way: you drop your files in, they get uploaded to a server, combined there, and a download link comes back a few seconds later. That round trip means a copy of your document -- contracts, tax forms, medical records, whatever it is -- sits on someone else's infrastructure, even if only briefly. You can merge PDFs without any of that, and it is not a workaround or a compromise on features -- it is how LockerPDF's Merge PDF tool works by default.
Why "no upload" is possible for merging PDFs
Merging PDF files is fundamentally a file-format operation, not a computation that needs server-side power. A PDF is a structured document made of pages, fonts, and embedded objects; combining two PDFs means concatenating their page trees into one file. A JavaScript library running in your browser tab can do this exactly as well as a server can -- the only difference is where the code executes. LockerPDF uses pdf-lib, an open-source library that reads and writes PDF structure directly in the browser using the File API. Your files are read from disk into memory, merged, and handed back to you as a new file -- they never touch a network request.
How to merge PDFs in your browser
- Go to the Merge PDF tool and drag your files into the dropzone, or click to browse.
- Drag the file cards to set the order pages should appear in the final document.
- Click Merge. The combined file is built in your browser and a download link appears immediately.
There is no upload progress bar because there is no upload. On a typical laptop, merging a handful of PDFs takes well under a second once the files are loaded.
How to verify a tool isn't uploading your files
You don't have to take a privacy claim on faith. Open your browser's developer tools (F12 or Cmd+Option+I), switch to the Network tab, and merge a file. If the tool is genuinely client-side, you'll see no outgoing request containing your file's bytes -- at most a few requests for the page's own JavaScript and analytics pings, none of which carry your document data. This is a quick way to sanity-check any "private" or "secure" claim a PDF tool makes, not just LockerPDF's.
What this means for sensitive documents
Because the merge happens locally, it works the same whether you're offline or on a hotel Wi-Fi network you don't trust, and there's no server-side log, temp file, or database row that could later be breached, subpoenaed, or simply forgotten about. This matters most for documents you wouldn't want to hand to a third party at all -- signed contracts, financial statements, medical paperwork -- where "we delete files after 24 hours" is a weaker guarantee than "the file was never sent."
FAQ
Is there a limit on how many PDFs I can merge?
No hard limit is enforced. The practical ceiling is your device's available memory, since every file is held in your browser's memory during the merge -- a modest laptop can comfortably merge dozens of typical PDFs.
Does merging add a watermark or change the file quality?
No. The merged file contains the exact original pages from your source PDFs -- text stays selectable, images stay at their original resolution, and no watermark or branding is added.
Can I reorder pages after merging, not just before?
Yes -- use Organize PDF on the merged output to rotate, delete, or reorder individual pages afterward.
Does this work on mobile?
Yes. Merge PDF runs in any modern mobile browser the same way it does on desktop, since it's just JavaScript running on-device -- no app install required.