<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: nikunj</title>
    <description>The latest articles on DEV Community by nikunj (@nikunj_r88).</description>
    <link>https://dev.to/nikunj_r88</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4048876%2F7b43b5cb-380a-4e35-853e-1edd1126d255.png</url>
      <title>DEV Community: nikunj</title>
      <link>https://dev.to/nikunj_r88</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nikunj_r88"/>
    <language>en</language>
    <item>
      <title>Why does a "free PDF tool" need your file to touch a server at all?</title>
      <dc:creator>nikunj</dc:creator>
      <pubDate>Wed, 19 Aug 2026 17:04:46 +0000</pubDate>
      <link>https://dev.to/nikunj_r88/why-does-a-free-pdf-tool-need-your-file-to-touch-a-server-at-all-17i1</link>
      <guid>https://dev.to/nikunj_r88/why-does-a-free-pdf-tool-need-your-file-to-touch-a-server-at-all-17i1</guid>
      <description>&lt;h1&gt;
  
  
  Why does a "free PDF tool" need your file to touch a server at all?
&lt;/h1&gt;

&lt;p&gt;Most people don't think twice before uploading a PDF online. Resume, offer&lt;br&gt;
letter, signed contract, ID scan — search "compress PDF," click the first&lt;br&gt;
result, upload, done.&lt;/p&gt;

&lt;p&gt;Here's what never sat right with me: &lt;strong&gt;almost none of these tools tell you&lt;br&gt;
where that file actually goes.&lt;/strong&gt; Not how long it's stored. Not who can access&lt;br&gt;
it internally. Not whether "we delete it after processing" is enforced by&lt;br&gt;
policy or by code.&lt;/p&gt;

&lt;h2&gt;
  
  
  The part that's easy to miss
&lt;/h2&gt;

&lt;p&gt;The client-side approach isn't new — there's a growing list of tools now&lt;br&gt;
doing PDF processing entirely in the browser via WebAssembly, and that's&lt;br&gt;
genuinely good for everyone. More privacy-respecting options is a win.&lt;/p&gt;

&lt;p&gt;But "runs in the browser" isn't the whole story. The harder part is whether&lt;br&gt;
the tool actually gets the PDF spec right once you're not relying on a&lt;br&gt;
mature server-side library to paper over the edge cases.&lt;/p&gt;

&lt;p&gt;Two examples from building &lt;a href="https://onepagepdfconverter.com" rel="noopener noreferrer"&gt;One Page PDF Converter&lt;/a&gt;:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Password encoding.&lt;/strong&gt; The PDF spec has a specific encoding requirement&lt;br&gt;
(PDFDocEncoding) for passwords with non-ASCII characters — accents, symbols.&lt;br&gt;
Get it wrong and the file &lt;em&gt;looks&lt;/em&gt; protected, opens fine today, and then&lt;br&gt;
silently won't unlock in six months when you actually need it. This is an&lt;br&gt;
easy bug to ship and a nasty one to discover.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Encryption format support.&lt;/strong&gt; PDFs can be encrypted with either RC4 (older,&lt;br&gt;
still common in files from older software) or AES (current standard). A lot&lt;br&gt;
of browser-based tools only handle one and fail silently on the other.&lt;/p&gt;

&lt;p&gt;Neither of these is hard to get right. They're just easy to skip when you're&lt;br&gt;
optimizing for "ships fast" over "handles the file someone hands you in five&lt;br&gt;
years."&lt;/p&gt;

&lt;h2&gt;
  
  
  What we ended up building
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Every tool (merge, split, compress, sign, convert, protect) runs 100%
client-side — verifiable by literally checking the network tab&lt;/li&gt;
&lt;li&gt;Correct password encoding and dual AES/RC4 support, tested against real
encrypted files, not just the happy path&lt;/li&gt;
&lt;li&gt;Pay-per-use pricing (₹9.99 / $0.12 per credit) instead of a subscription —
most people need this for ten minutes a month, not every day&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Free to try: [&lt;a href="https://onepagepdfconverter.com" rel="noopener noreferrer"&gt;onepagepdfconverter.com&lt;/a&gt;&lt;br&gt;
](url)&lt;br&gt;
Curious what other PDF spec edge cases people have run into — always&lt;br&gt;
interesting to compare notes with anyone else who's gone down this path.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>beginners</category>
    </item>
    <item>
      <title>A PDF toolkit that never uploads your files, now with batch mode</title>
      <dc:creator>nikunj</dc:creator>
      <pubDate>Mon, 27 Jul 2026 06:43:10 +0000</pubDate>
      <link>https://dev.to/nikunj_r88/a-pdf-toolkit-that-never-uploads-your-files-now-with-batch-mode-4jn2</link>
      <guid>https://dev.to/nikunj_r88/a-pdf-toolkit-that-never-uploads-your-files-now-with-batch-mode-4jn2</guid>
      <description>&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://onepagepdfconverter.com/" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fonepagepdfconverter.com%2Fog-image.png" height="420" class="m-0" width="800"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://onepagepdfconverter.com/" rel="noopener noreferrer" class="c-link"&gt;
            Free Online PDF Converter – Word, HTML, Image &amp;amp; More Tools
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            Free online PDF converter with complete privacy protection. Merge, split, compress, sign, and convert PDFs directly in your browser — plus a free age calculator and scientific calculator. No uploads, no data storage.
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
            &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fonepagepdfconverter.com%2Ffavicon.ico" width="48" height="48"&gt;
          onepagepdfconverter.com
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;br&gt;
I built One Page PDF Converter (onepagepdfconverter.com) — a set of 20+ PDF tools (merge, split, compress, sign, convert to/from Word/Excel/PowerPoint/images, etc.) plus a couple of everyday calculators, all running entirely client-side in the browser. There's no backend processing your files: no upload, no storage, no server round-trip. Everything happens locally via JS, so your documents never leave your device. That's the whole pitch — it's the same reason I built it, since most PDF tools online quietly funnel your files through a server you have no visibility into.

&lt;p&gt;All 20+ tools are free with no sign-up.&lt;/p&gt;

&lt;p&gt;Today I'm adding a small premium option: batch processing, for ₹9.99 per batch (~$0.10 USD), one-time — no subscription. Run a tool across multiple files in one go instead of one at a time. Everything else on the site stays free and unlimited.&lt;/p&gt;

&lt;p&gt;Tech-wise it's a single HTML file backed by client-side JS libraries — no framework, no build step. It's a PWA, so it installs and works offline once loaded.&lt;/p&gt;

&lt;p&gt;Would love feedback — especially on the privacy angle, the batch pricing, or tools you think are missing.&lt;/p&gt;


&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://onepagepdfconverter.com/" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fonepagepdfconverter.com%2Fog-image.png" height="420" class="m-0" width="800"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://onepagepdfconverter.com/" rel="noopener noreferrer" class="c-link"&gt;
            Free Online PDF Converter – Word, HTML, Image &amp;amp; More Tools
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            Free online PDF converter with complete privacy protection. Merge, split, compress, sign, and convert PDFs directly in your browser — plus a free age calculator and scientific calculator. No uploads, no data storage.
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
            &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fonepagepdfconverter.com%2Ffavicon.ico" width="48" height="48"&gt;
          onepagepdfconverter.com
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


</description>
      <category>webdev</category>
      <category>productivity</category>
      <category>security</category>
      <category>news</category>
    </item>
  </channel>
</rss>
