Why it exists
Most free online tools work the same way: you hand over your file, it travels to a server you know nothing about, something happens to it, and you download the result. For a holiday photo that may be fine. For a signed contract, a salary slip, an ID scan or a client’s draft, it is a genuinely bad trade.
The frustrating part is that it is usually unnecessary. Modern browsers can compress images, edit PDFs, run OCR and translate text on their own. Toolraq was built to prove that point across a whole toolkit rather than a single demo.
How it works
Every tool is written in JavaScript and WebAssembly and executes on your own device. When you drop a file onto a page, it is read into your browser’s memory, processed there, and handed back to you as a download. It is never transmitted, because there is no server to transmit it to — the site is a set of static files.
That design has a useful side effect: it is verifiable. Open your browser’s developer tools, watch the Network tab, and use any tool. Nothing you supply shows up in a request.
The three rules
These are constraints rather than marketing. If a feature cannot be built within them, it does not ship. That is why you will not find a website speed checker here, for instance: doing it properly requires a paid third-party API, so it was left out rather than faked.
- Free forever — no premium tier, no feature gates, no usage caps, no watermarks on anything you produce.
- Private by construction — files are processed locally, not merely “deleted quickly” after upload.
- No accounts and no API keys — nothing to sign up for, and nothing to paste in before a tool will work.
What is inside
There are currently 54 tools across five categories: image tools such as compress, convert, resize, crop, watermark and vectorise; PDF tools including merge, split, rotate, compress, fill and sign, and an invoice generator; calculators covering GST, SIP, EMI, income tax, BMI and more; text tools including on-device OCR and translation; and developer utilities such as JSON, Base64, hashing and QR codes.
The AI-powered features follow the same rule as everything else. Text recognition and translation run on your device using open models and your browser’s built-in capabilities, not a paid cloud API.
Who builds it
Toolraq is an independently built and maintained project rather than a company product. It is funded by nothing more than the low cost of hosting static files, which is precisely what makes “free forever” a sustainable promise instead of a slogan.
If a tool misbehaves, produces a wrong result, or you think something important is missing, that feedback is genuinely useful — write to ashubromide@gmail.com.