Merge PDF files — without uploading them anywhere
A signed contract in three separate scans, a visa application that wants one combined document, invoices that need to arrive as a single attachment — merging PDFs is one of those small chores that comes up constantly. The problem is that the documents involved are often exactly the ones you should not hand to a random website: agreements, medical records, tax paperwork. This tool merges PDFs entirely inside your browser using pdf-lib, a pure JavaScript library. Your files are read from disk, stitched together in your browser’s memory, and downloaded as merged.pdf. No server ever receives a byte of them. Pages keep their original size and orientation, and the files are combined in exactly the order you select them.
How it works
- Select or drop your PDF files in the order you want them combined.
- The tool joins them front to back — first selected file first.
- Download merged.pdf straight from your browser’s memory.
Frequently asked questions
How do I control the page order in the merged file?
The order you select or drop the files is the order they are combined: the first file’s pages come first, then the second file’s, and so on. If the order comes out wrong, just re-run with the files selected in the sequence you want — it takes seconds since nothing has to upload.
Do my contracts or documents get uploaded to a server?
No. The merge runs on pdf-lib, a JavaScript PDF library executing entirely in your browser. Nothing is transmitted — you can open your browser’s network tab and watch, or disconnect from the internet after the page loads and the tool keeps working. For signed agreements and financial documents, that is the whole point.
Are bookmarks and the table of contents preserved?
Honest answer: no. pdf-lib copies pages with their full content — text, images, fonts, annotations on the page — but it does not carry over the document outline (bookmarks). If your source PDFs rely on a clickable table of contents, expect to rebuild it in a desktop editor afterwards.
Is there a limit on how many PDFs or how large they can be?
No fixed limit. Because everything happens on your machine, the practical ceiling is your device’s memory. Merging dozens of ordinary documents is no problem on a typical laptop; a stack of enormous scanned volumes may push a low-memory device.