"I kept reaching for a PDF converter, getting hit with sign-up walls, upload spinners, and sketchy privacy policies. So I built one that does none of that."
Today I'm excited to ship Folio Converter — a completely free, browser-based document converter that turns PDF files into Word documents, Word documents into PDFs, plain text into PDFs, and PDFs into plain text. No sign up. No upload. No server. Everything runs inside your browser.
This post is the story of why I built it, how it works technically, and why I think privacy-first tools matter more than ever.
Why I Built Folio Converter
The converter tools that exist today all share a frustrating pattern: they're either locked behind premium plans, they show you ads before and after every conversion, they require an email address just to download your own file, or — worst of all — they upload your documents to a server somewhere with vague assurances about what happens next.
Documents are personal. Contracts, CVs, reports, invoices, medical forms — these aren't files you want passing through a stranger's server. But for years, that's been the only option if you needed a quick conversion.
I wanted to build something different: a converter that is genuinely, structurally incapable of seeing your files — because they never leave your device in the first place.
What Is Folio Converter?
Folio Converter is a single-page web application that supports four document conversions:
- PDF → DOCX — Extract text from any PDF and create an editable Word document
- DOCX → PDF — Convert Word documents (.doc and .docx) to PDF
- TXT → PDF — Turn plain text files into neatly formatted PDF documents
- PDF → TXT — Extract all text content from a PDF into a plain .txt file
All four converters support batch processing — you can drop up to 50 files at once and convert them all in a single click. Each file can be downloaded individually or you can grab everything with a single Download All button.
The app is live at:
folioconverter.codewithneo.com

The FileReader API: Why Files Never Leave Your Device
This is the key detail. When you drop a file onto Folio Converter, your browser uses its built-in FileReader API to read the file directly into memory — just like how a text editor opens a file. The file is parsed entirely in JavaScript, converted entirely in JavaScript, and the result is handed back to you as a download — entirely in JavaScript.
There is no fetch() call sending your file anywhere. There is no server waiting for your data. Once the page loads, it would work with your internet disconnected.
"The privacy guarantee isn't a policy you have to trust. It's a structural fact: the code literally has no way to send your files anywhere."
The Design
I wanted Folio Converter to feel premium and trustworthy — not like another cheap utility tool. The design uses a deep burgundy and cream palette with Playfair Display serif headings and DM Sans for body text. The result feels closer to a design studio tool than a typical file converter.
The app is responsive across mobile and desktop, features drag-and-drop file zones with visual feedback, a real-time progress bar during batch conversions, and individual or bulk download options after conversion.
Each of the four converters has its own dedicated page with tailored SEO copy, FAQ sections, and a trust strip reinforcing the core promise: The World's Safest Document Converter.
Honest Limitations
Folio Converter is transparent about what it can and can't do. Because it runs in the browser rather than using server-side tools like LibreOffice or Microsoft Word, there are real constraints:
- Complex PDF layouts, multi-column text, and embedded images don't convert with full fidelity
- Scanned PDFs (image-only) are not supported — OCR would require a server
- Advanced Word formatting like custom themes and tracked changes may not be preserved
- Very large files may be slower on lower-powered devices
For plain-text documents — which is the majority of real-world conversion needs — the results are excellent. And the trade-off is complete privacy, zero cost, and instant results.
What's Next
This is v1.0. Here's what I'm considering for future versions:
- Image to PDF conversion (JPG/PNG → PDF)
- PDF merging and splitting
- Better PDF → DOCX layout preservation
- A dark mode
- More languages and localisation
If you have a feature request, or if something didn't work for your use case, I'd love to hear from you — email [email protected].
Try It
Folio Converter is live now at folioconverter.codewithneo.com — completely free, no account required. Drop a PDF, hit Convert All, and download your Word document in seconds.
If it saves you time or frustration, share it with someone who needs it. That's the best thing you can do for a small indie tool.
Tags: pdf converter, docx to pdf, pdf to word, free tools, javascript, react, browser tools, privacy, indie projects, codewithneo


Leave a Reply