When you open an "online PDF merger," drag in 5 PDFs, and click "merge & download," two completely different things might be happening behind the scenes:
- Approach A: Browser reads files directly, uses JavaScript or WebAssembly to merge in local memory. Network traffic = 0;
- Approach B: Browser uploads each file to a server, backend merges, sends the result back. Your file copy now sits in their data center.
Both look identical to users, but privacy, speed, and security differ enormously.
1. Six-Dimension Comparison
| Dimension | Browser-Local | Cloud Server |
| File destination | Always on your device | Uploaded to their server |
| Speed | Device-dependent | Network + server load |
| Size limit | Browser memory (1-2GB) | Pricing (free tier ~100MB) |
| Offline use | Yes | No |
| Collaboration | No | Native support |
| Privacy risk | Very low | Depends on provider |
2. Why Cloud Processing Carries Uncontrollable Risk
- Server logs: may record file names, sizes, IPs;
- Cleanup delays: "24-hour auto-delete" claims, but backups may copy them away;
- Third-party dependencies: providers use AWS S3, CDNs — every node may leave traces;
- Policy changes: provider changes terms, gets acquired, shuts down — historical files unknown;
- Security breaches: provider hacks expose all users' temp files.
3. How Local Processing Works
Browser capabilities have transformed in the last decade. All these can run in-browser:
- Read files: File API;
- Parse formats: pdf-lib, SheetJS, jszip;
- Cryptography: Web Crypto API;
- Image processing: Canvas + WebAssembly;
- Video/audio: FFmpeg.wasm;
- Download result: URL.createObjectURL + native download.
4. 30-Second Verification
- Open target page;
- F12 → Network;
- Clear;
- Trigger processing;
- Watch for large POST request bodies.
More thorough: disconnect from internet, try again. If it still works, it's 100% local.
🔍 Real Test
Tested all 30 tools on hebing.org with this method — all work offline. This is because our tools are Service Worker-cached, so second visits don't need network at all.
5. Decision Framework
| Scenario | Recommended |
| Contracts, ID, medical records | Local |
| Public PDF merges | Local |
| Team collaboration editing | Cloud |
| AI cutout/video gen | Cloud |
| Large files, long tasks | Cloud |
| Cross-device sync | Cloud |
🛠️
See all 30 local-processing tools
PDF, Excel, images, dev tools — none upload
→
Conclusion
"Online tool" hides two very different promises. Next time you pick a tool, verify proactively rather than trust blindly.