<?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: Tanu Mukherjee</title>
    <description>The latest articles on DEV Community by Tanu Mukherjee (@tanu_mukherjee_abf8570012).</description>
    <link>https://dev.to/tanu_mukherjee_abf8570012</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3949212%2Fb7b61235-2f64-4f55-8ad1-f44080d9ada4.jpg</url>
      <title>DEV Community: Tanu Mukherjee</title>
      <link>https://dev.to/tanu_mukherjee_abf8570012</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tanu_mukherjee_abf8570012"/>
    <language>en</language>
    <item>
      <title>I Built 16 Free Dev Tools That Never Touch Your Data — Here's How</title>
      <dc:creator>Tanu Mukherjee</dc:creator>
      <pubDate>Sun, 24 May 2026 15:13:09 +0000</pubDate>
      <link>https://dev.to/tanu_mukherjee_abf8570012/i-built-16-free-dev-tools-that-never-touch-your-data-heres-how-34gp</link>
      <guid>https://dev.to/tanu_mukherjee_abf8570012/i-built-16-free-dev-tools-that-never-touch-your-data-heres-how-34gp</guid>
      <description>&lt;p&gt;&lt;em&gt;Tags:&lt;/em&gt; webdev, javascript, opensource, productivity&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every developer uses online tools daily. Format some JSON. Test a regex. Decode a JWT. Compare a diff.&lt;/p&gt;

&lt;p&gt;But most online tool sites have a dirty secret: they upload your data to their servers. That JWT token you just pasted? It's been logged. That JSON with API keys? Stored somewhere.&lt;/p&gt;

&lt;p&gt;On top of that, they're slow, covered in pop-ups, and half of them require sign-ups to do basic things.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;DevToolBox&lt;/em&gt; — 16 developer tools that run entirely in your browser. No backend server. No uploads. No sign-up. No tracking.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Live site:&lt;/em&gt; &lt;a href="https://devtoolboxes.net" rel="noopener noreferrer"&gt;devtoolboxes.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Open source:&lt;/em&gt; &lt;a href="https://github.com/tanumuki/dev_tool_box" rel="noopener noreferrer"&gt;github.com/tanumuki/dev_tool_box&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  The Full Tool List
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Category&lt;/th&gt;
&lt;th&gt;Tools&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Developer&lt;/td&gt;
&lt;td&gt;JSON Explorer, Diff Checker, Regex Playground, Cron Visualizer, JWT Decoder, Markdown Preview&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Encoding&lt;/td&gt;
&lt;td&gt;Base64 Encoder/Decoder, URL Encoder/Decoder, Hash Generator&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Files&lt;/td&gt;
&lt;td&gt;PDF Tools (merge/split/compress/rotate/watermark), Image Compressor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Design&lt;/td&gt;
&lt;td&gt;CSS Generators, Color Palette, OG Preview, QR Generator&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Utility&lt;/td&gt;
&lt;td&gt;Timestamp Converter&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  The "Zero Upload" Guarantee
&lt;/h3&gt;

&lt;p&gt;Don't take my word for it. Open any tool, open your browser's Network tab, and use it. You'll see zero outbound requests. Everything processes in JavaScript on your machine.&lt;/p&gt;

&lt;h2&gt;
  
  
  Technical Decisions
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;Framework:&lt;/em&gt; Next.js with static export. Every page is prerendered at build time and served via Vercel's CDN. No server-side rendering needed since there's no dynamic data.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;PDF Tools:&lt;/em&gt; Uses &lt;a href="https://pdf-lib.js.org/" rel="noopener noreferrer"&gt;pdf-lib&lt;/a&gt; which runs entirely in the browser. Merge, split, compress, rotate, and watermark — all client-side.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Hash Generator:&lt;/em&gt; SHA-1, SHA-256, SHA-384, SHA-512 use the Web Crypto API (crypto.subtle.digest). MD5 required a custom JavaScript implementation since the Web Crypto API doesn't support it.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;JWT Decoder:&lt;/em&gt; Just atob() and JSON.parse(). No jsonwebtoken dependency needed for decoding (verification requires the secret key, which is a server-side concern).&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Markdown Preview:&lt;/em&gt; Built a custom parser using regex. No marked, no remark, no react-markdown. Handles headings, bold, italic, code blocks, lists, links, images, blockquotes, and horizontal rules.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Styling:&lt;/em&gt; Tailwind CSS with a dark theme. Glass-card components with backdrop blur. Gradient accents.&lt;/p&gt;

&lt;h2&gt;
  
  
  SEO Strategy
&lt;/h2&gt;

&lt;p&gt;Each tool page has:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JSON-LD structured data (WebApplication + FAQPage + BreadcrumbList schemas)&lt;/li&gt;
&lt;li&gt;4-5 FAQ entries targeting real search queries (e.g., "How do I decode a JWT token?")&lt;/li&gt;
&lt;li&gt;Related tools section for internal linking&lt;/li&gt;
&lt;li&gt;Optimized meta descriptions with canonical URLs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The homepage has Organization and WebSite schemas with a SearchAction for Google's sitelinks searchbox.&lt;/p&gt;

&lt;p&gt;Total: 20 pages in the sitemap, all statically generated.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Adding a blog with SEO articles targeting high-volume developer queries&lt;/li&gt;
&lt;li&gt;More tools based on community feedback&lt;/li&gt;
&lt;li&gt;Possibly Carbon Ads as an AdSense alternative (better CPM for developer audiences)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;Site:&lt;/em&gt; &lt;a href="https://devtoolboxes.net" rel="noopener noreferrer"&gt;devtoolboxes.net&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Source:&lt;/em&gt; &lt;a href="https://github.com/tanumuki/dev_tool_box" rel="noopener noreferrer"&gt;github.com/tanumuki/dev_tool_box&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What tools would you want added? Let me know in the comments.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>privacy</category>
      <category>showdev</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
