About Utilora
A toolkit built on one principle: your data belongs to you, full stop.
Why we built this
Most online tools work by sending your data to a server, processing it there, and returning a result. That model is convenient for developers but asks users to trust a third party with files, credentials, and code they may never have intended to share.
Utilora flips that model. Every tool on this site runs entirely inside your browser using JavaScript, Web Workers, and WebAssembly. When you paste a JWT, compress an image, or run a background-removal model, the bytes never leave your device. There is no server receiving your data — because there is no server in the loop at all.
We started with the tools developers reach for constantly: JSON formatters, Base64 encoders, regex testers, hash generators. Then we added the machine-learning tools that normally require an API key and a cloud GPU — background removal, audio transcription, embeddings — and brought them browser-native using ONNX Runtime and Transformers.js. The result is a growing library of utilities that work offline, respect your privacy by construction, and never ask you to sign up for anything.
The technical foundation
Compute-heavy tools (image processing, ML inference, SQL parsing) run in dedicated Web Workers so they never block the UI thread. Model weights are fetched from a CDN on first use and cached by the browser's Cache API for subsequent runs — a 40 MB Whisper model downloads once, then transcription works offline indefinitely.
The site is built with Next.js and deployed as a static export, meaning the entire application can be served from a CDN edge node with no origin server. Core Web Vitals are a first-class concern: tool code is code-split so the homepage loads nothing it doesn't need, and model weights are never preloaded — they download only when you actively run a tool.
What we don't do
- We do not store your files, inputs, or outputs on any server.
- We do not require accounts, email addresses, or personal information.
- We do not sell or share data with advertisers beyond standard anonymised page-view analytics.
- We do not run any code on your data in a location you cannot inspect — every worker is open to the browser DevTools.
The tools
Utilora currently covers eleven categories — developer tools, text utilities, image processing, converters, calculators, color tools, cryptography, AI-powered utilities, data tools, time and date helpers, and creator tools. Each category contains purpose-built tools rather than a generic Swiss-army implementation: a dedicated log-format parser, a logfmt converter, a PII redactor, a SQL explorer with in-browser SQLite, an embedding tester, and more.
We add tools when there is a genuine gap — something that either requires a paid service elsewhere or that forces users to upload sensitive data to accomplish a routine task. If you have a suggestion, use the contact page.
Open source
The architecture of Utilora — Web Worker isolation, Comlink-based proxy pattern, ONNX Runtime integration — is designed to be auditable. You can inspect every worker script in the browser DevTools, verify that no network requests are made during tool execution, and confirm that model weights come from the documented CDN endpoints only. We believe privacy guarantees should be verifiable, not just stated.



