How Zippd handles big files faster than most paid competitors — and why the browser is enough.
Updated May 18, 2026
Most file-sharing services pretend you don't need big-file support until you're paying. WeTransfer caps the free tier at 2 GB. Dropbox Transfer caps free at 100 MB. Mega gives you 20 GB but expects an account and prefers their desktop client. Email attachments still die at 25 MB.
You're moving real things — design exports, raw video, builds, datasets — and you want it done in a browser without paperwork. Here's how big you can actually go on Zippd and why the upload is fast.
| User type | Per file | Total storage | File TTL |
|---|---|---|---|
| Anonymous | 2 GB | 10 GB / network | 7 days |
| Registered (free) | 20 GB | 100 GB | 30 days |
20 GB is roughly four hours of 4K video, a few hundred RAW photos, or an entire Xcode build folder. Enough headroom for any realistic single transfer.
Naïve uploaders send a file as one HTTP request and pray. A blip in the connection mid-upload kills the whole thing. A 1 GB file at the wrong moment becomes a 1 GB retry.
Zippd splits every upload into 8 MB chunks. Each chunk encrypts with AES-256 client-side, then PUTs directly to our S3-compatible storage. We upload up to 8 chunks in parallel. If a chunk fails, only that 8 MB retries. The connection can hiccup repeatedly and the file still arrives.
On a typical home fiber connection you'll see effective throughput approaching your raw upload speed. On a 1 Gbps line, a 20 GB file uploads in about three minutes. That's not theoretical — open DevTools and watch the parallel PUTs land.
Older services tell you to install their desktop client for files over a few GB. The reason: browser uploads were historically slow because of single-stream limitations. That hasn't been true for years.
Modern browsers expose:
Stack those together and a 20 GB browser upload performs within 5–10% of a native desktop client. We didn't bother building a desktop app because the browser does the job.
The chunked design gives you three free properties:
The 20 GB cap exists for sane reasons:
If you regularly need to ship 50+ GB files, talk to us — we'll discuss a higher-tier setup.
20 GB per file with a registered account. 2 GB anonymous. Free forever.
No. Any modern browser does the entire upload. No desktop app. No browser extension.
Failed chunks retry automatically. You won't lose progress on the successfully-uploaded chunks. If the whole tab crashes, we abort the multipart upload on the storage side so you're not charged for orphaned bytes.
No. Encryption is per-chunk. A 20 GB file gets the same AES-256-GCM treatment as a 1 MB file, just more chunks.
Same way: their browser fetches each chunk, decrypts, decompresses, and assembles. They click one button. No special software.
Drop a file on the homepage — including the giant ones. Watch the parallel chunks fly.
Why the "send password separately" trick is mostly theater, and what real password protect...
Every file-sharing vendor claims to be secure. Most just mean HTTPS. Here is what the word...
Short-lived share links with auto-expiry, download caps, and ciphertext that gets deleted...
The zero-knowledge file sharing tool you miss. Same browser-side encryption, same URL-frag...