Answers4 min

What Does 'Runs Locally in Your Browser' Actually Mean?

It means the tool's code executes on your device, your files stay on your device, and no data is uploaded. Here's how to verify that claim yourself.

Every Zro7 tool runs locally. This post shows you how to prove it with DevTools in 30 seconds.

'Runs locally in your browser' means the tool's JavaScript/WebAssembly executes on your device's CPU, your files are read from local memory, and none of your content is sent to a server. It's a claim you can and should verify — with DevTools Network in less than a minute.

The 30-second verification

  1. Open the tool's page (e.g. Compress PDF).
  2. Open DevTools → Network tab. Click Clear.
  3. Drop your file and start the operation.
  4. Look at outbound requests: only HTML, JS, WASM, and CSS should download; no POST/PUT should carry your file bytes.
  5. Bonus: toggle airplane mode after the page loads; the tool should still work.

What 'local' rules out

  • Upload to a converter server.
  • Cloud AI API calls.
  • Analytics that ship file names, sizes, or content.
  • Silent 'diagnostic' uploads.

What 'local' still allows

  • Downloading the tool's own code + WASM (JS bundle, model weights).
  • Loading web fonts / icons from a CDN.
  • Optional lookups you explicitly trigger (e.g. DNS-over-HTTPS to Cloudflare for a DNS tool).

Local vs Cloud (side by side)

  • Local (Zro7): file bytes never leave the tab. Airplane-mode capable.
  • Cloud (Smallpdf / iLovePDF / CloudConvert): file bytes uploaded to their server, processed, and returned.
  • Local requires: a modern browser, enough RAM for your file. Cloud requires: trust in a third party.

Steps to try it yourself

  1. Open Zro7.
  2. Pick any tool.
  3. Open DevTools → Network before dropping your file.
  4. Confirm no request carries the file payload.

Updated December 22, 2026 · Zro7 editorial team.

Frequently asked questions

How can a tool run without a server?

The whole tool downloads to your browser as JS/WASM once, then runs on your CPU — no ongoing server needed.

Do I have to trust the site?

Less than a cloud service, and you can verify with DevTools. Open-source WASM libraries (pdf-lib, ffmpeg) are auditable.

Does it use my bandwidth?

Only for the initial download of the tool (cached afterwards) — not for your file.

Is there any data that Zro7 itself sees?

Standard web analytics (page URL, referrer). Never your file names or contents.

What if I lose internet mid-task?

Local tools keep running. Cloud tools abort.

Related posts

← Back to blog