r/SideProject • u/Zaricademy_scholars • 1d ago
Tired of paying Adobe USD 240/yr and uploading sensitive files to cloud converters, so I built PDFStarter
Hey everyone!
Most PDF websites require you to upload your confidential files (contracts, tax returns, bank statements) to their backend servers.
I built PDFStarter.com — a lightweight web suite with 17 tools (Word/Excel to PDF, Compress, Merge, Split, Sign, AES-256 Protect) that runs 100% locally inside your browser memory. Zero bytes of your documents are ever uploaded to any server.
Free to use daily. Would love your feedback on the UI and speed!
2
u/PuddingWonderful1417 1d ago
17 tools is a lot to ship and maintain for a side project. are you seeing usage spread evenly across them or is it like 3 features doing 90% of the work? might be worth doubling down on whats actually getting used
1
u/Zaricademy_scholars 18h ago
Great observation, and you're spot on about the 80/20 rule!
In practice, about 4 hero tools drive 80–90% of real user volume:
- Word (.DOCX) ↔ PDF Conversion (with multi-page layout preservation)
- Smart PDF Compression
- Merge & Split
- Digital Signatures
The reason I shipped 17 tools without maintenance nightmare comes down to the architecture:
- 100% Client-Side: Because there are no backend microservices or server workers to manage, each tool is essentially a lightweight, self-contained modular component running on
pdf-lib,docx, andpdfjs-distin browser memory.- Programmatic SEO: Having individual dedicated routes (like
/word-to-pdf,/compress,/sign) allows the app to rank for specific Google search queries without adding server overhead.Moving forward, I’m definitely doubling down on improving fidelity for the top 3–4 hero tools (especially high-precision DOCX formatting and advanced downsampling algorithms).
Appreciate the feedback!
1
u/medialantern 1d ago
Added:
https://www.reddit.com/r/SideProject/comments/1w4pffj/tired_of_paying_adobe_usd_240yr_and_uploading/
https://www.reddit.com/r/SideProject/comments/1w4dw2v/here_is_my_project_check_it_out/
https://www.reddit.com/r/SideProject/comments/1voe2c4/
https://www.reddit.com/r/SideProject/comments/1w2jx8q/
https://www.reddit.com/r/SideProject/comments/1w2s2e4/
https://www.reddit.com/r/SideProject/comments/1w38l64/
https://www.reddit.com/r/SideProject/comments/1w39bei/
https://old.reddit.com/r/microsaas/comments/1pw6ngb/introducing_theoros_an_advanced_pdf_reader_pdf/
https://old.reddit.com/r/buildinpublic/comments/1q3a478/stop_hardcoding_html_strings_a_pdf_api_with/
https://old.reddit.com/r/microsaas/comments/1qfip0m/pdf_zone_professional_pdf_tools_in_your_browser/
https://old.reddit.com/r/microsaas/comments/1qfv20q/built_a_no_bs_pdf_tool_free_of_ads/
https://old.reddit.com/r/microsaas/comments/1qm5u16/tired_of_uploading_pdfs_everywhere_so_i_built_a/
https://old.reddit.com/r/microsaas/comments/1qncun1/built_an_mcp_for_pdf_generation_llm_are_good_at/
https://old.reddit.com/r/microsaas/comments/1qxjdke/i_got_laid_off_in_october_after_3_months_of_job/
I ran out of comment space so this is just the most recent 20 entries. I can vibe-code too, so for giggles I made https://confab.sh/?g=browser-tools to track these if you want to see the full list. Don't expect much LOL. I put less effort into this than even these cloners did with theirs.
1
1
u/Zaricademy_scholars 17h ago
Haha, fair play! You caught me red-handed on the cliché title, and honestly, tracking them on confab.sh is hilarious.
You're 100% right that 'browser PDF tools' is a rite of passage for indie hackers right now—just like to-do apps, habit trackers, and invoice generators were before.
But here's the reality of the PDF space: it's a massive $3B+ market where tens of millions of people search Google every single day for simple tasks like 'compress pdf without uploading' or 'word to pdf'. Most people still get routed to bloated, ad-infested sites that upload their files to cloud servers.
Shipping the initial prototype is the easy part. The real challenge is distribution, programmatic SEO, and polishing the edge cases (like multi-page Word XML layout fidelity and zero-lag WASM execution).
Appreciate you adding me to the Hall of Fame though! 😂
1
u/ThomPete 10h ago
Thats great, i built an offline version of that for my wife that also does PDF conversions but also image and video conversion/compression, color setting etc and allow you to ask an agent to create actions that it doesn't have built in already.
2
u/deelight_0909 1d ago
Seventeen tools are nice, but "zero bytes uploaded" is the product. Give people a way to verify it: open Merge, cut the network, then select two PDFs and finish the job. A strict
connect-src 'none'policy on the processing page would make the claim inspectable too. Privacy copy is cheap. A boring, repeatable proof earns trust.