About FreeBookConvert
Online file converters built on a simple principle: your files belong on your device.
Last updated: 2026-05-26
Who runs this site
FreeBookConvert is built and operated by Andrew Nakas, an independent software developer based in the United States. It is not a venture-backed company, not a shell of a larger network, and not staffed by an SEO content team. One person writes the converters, maintains the infrastructure, and answers email.
The site started as a personal project after one too many encounters with online converters that demanded an upload, an email address, and the patience to wait through a "Pro" upsell for a one-line text extraction. Every converter on FreeBookConvert was written from scratch around open-source libraries that can run inside a browser, with the goal that you can do the work without trusting anyone — including us — with the contents of your file.
The privacy problem with most converters
Almost every popular online file converter works by uploading your file to a server, processing it there, and sending the result back. That model is fine for cat memes. It's problematic for personal ebooks, private documents, business contracts, manuscripts, tax forms, or photos you'd rather not hand to a stranger's server. In March 2025 the FBI's Denver field office and Malwarebytes publicly warned that a measurable number of online file-converter sites had become a vector for malware delivery and data theft, with attackers bundling malicious payloads into the converted output or scraping uploaded documents for credentials and financial data.
Even when an operator is honest, "deleted after one hour" is a claim nobody can verify from the outside. Once a file leaves your machine, you can't get it back.
How FreeBookConvert is different
Every conversion on this site runs inside your web browser using JavaScript and WebAssembly. The libraries that do the heavy lifting are mature open-source projects with millions of installs:
- JSZip for reading and writing the ZIP container behind EPUB, CBZ, and our batch ZIP outputs.
- pdf-lib for assembling PDFs and editing existing ones.
- pdf.js (Firefox's own engine) for parsing PDFs and rendering pages.
- heic-to (built on libheif compiled to WebAssembly) for decoding iPhone HEIC photos.
- Tesseract.js (a WebAssembly build of Google's open-source Tesseract) for OCR on scanned PDFs and images.
When you drop a file onto a converter page, here is exactly what happens:
- Your browser reads the file into memory as a Blob.
- JavaScript already running on the page parses it (no further downloads of your file, no transmission).
- A new file is assembled in memory.
- Your browser saves the new file to your downloads folder using a standard
<a download>link orURL.createObjectURL.
No upload, no server. You can disconnect from the internet after the page loads and the conversions keep working. We encourage you to verify this — open DevTools, switch to the Network tab, and watch the requests during a conversion.
How it stays free
FreeBookConvert is funded by unobtrusive display advertising served by Google AdSense. Since there are no per-conversion server costs (no compute, no storage, no bandwidth for the files themselves), ads alone are enough to cover the hosting bill without paywalls, signup forms, watermarks, file-size limits, or "premium" tiers. If you'd rather not see ads, browser ad blockers work normally on this site; please consider contacting us with feedback instead of just blocking, especially if you encounter an ad you found inappropriate.
Editorial policy
The content on this site (the converter pages and the guides) is written and reviewed by the operator. We don't republish content from elsewhere, we don't use AI-generated marketing copy for the explainer text, and we don't accept paid placements or sponsored articles. Where we cite a fact — a format's history, a library's behavior, a regulator's warning — we link to the primary source where one exists.
If you spot a factual error on any page, email us. Corrections happen the same week.
What this site doesn't do
- It doesn't strip DRM. EPUBs from Apple Books, Kindle, library lending services, and similar sources cannot be converted here. Stripping DRM is a copyright violation in most jurisdictions and we don't enable it.
- It doesn't store or distribute copyrighted content. Nothing you convert is uploaded to us; we have no library of files.
- It doesn't track you across the web. Standard Google Analytics with anonymization is the only third-party analytics; there is no advertising profiler beyond Google AdSense, which you can opt out of (privacy policy section 6).
Stack and infrastructure
The site is static HTML, CSS, and JavaScript served from Cloudflare Pages. There is no backend application, no database of users, no server-side rendering, and no per-user state stored anywhere. The strict Content Security Policy on each converter page limits the network destinations any script can reach, which is structural evidence that a page cannot exfiltrate your file even if it wanted to. Source is hosted in a private repository; we plan to open-source individual converters as they mature.
Contact
Bugs, feature requests, factual corrections, privacy questions, press inquiries, and DMCA notices all go to contact@freebookconvert.com. See the Contact page for what to include in each case.