<?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: Bhaskar Nath Pandey</title>
    <description>The latest articles on DEV Community by Bhaskar Nath Pandey (@bhaskar_nathpandey_1a8de).</description>
    <link>https://dev.to/bhaskar_nathpandey_1a8de</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%2F3682595%2F33351ab5-aa07-4d68-9d5a-d557e305fdc6.jpg</url>
      <title>DEV Community: Bhaskar Nath Pandey</title>
      <link>https://dev.to/bhaskar_nathpandey_1a8de</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bhaskar_nathpandey_1a8de"/>
    <language>en</language>
    <item>
      <title>Why I stopped using online JSON formatters (and built my own)</title>
      <dc:creator>Bhaskar Nath Pandey</dc:creator>
      <pubDate>Sun, 28 Dec 2025 11:40:46 +0000</pubDate>
      <link>https://dev.to/bhaskar_nathpandey_1a8de/why-i-stopped-using-online-json-formatters-and-built-my-own-2g2b</link>
      <guid>https://dev.to/bhaskar_nathpandey_1a8de/why-i-stopped-using-online-json-formatters-and-built-my-own-2g2b</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvctzv2k3jnrnow8r8576.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvctzv2k3jnrnow8r8576.png" alt=" " width="800" height="378"&gt;&lt;/a&gt;The "Oh No" Moment 😱&lt;br&gt;
We have all been there.&lt;/p&gt;

&lt;p&gt;You are debugging a production issue at 2 AM. You grab a massive blob of minified JSON from the logs, look for a "JSON Prettifier" on Google, and paste the data into the first result that pops up.&lt;/p&gt;

&lt;p&gt;It formats perfectly. You find the bug. Great.&lt;/p&gt;

&lt;p&gt;But then, 5 seconds later, the realization hits you:&lt;/p&gt;

&lt;p&gt;"Wait... did I just send a customer's PII (Personally Identifiable Information) or a production API key to some random server in the middle of nowhere?"&lt;/p&gt;

&lt;p&gt;Most free online tools are black boxes. You don't know if they are logging your input, storing it in a database, or training an AI model on it.&lt;/p&gt;

&lt;p&gt;The Solution: Go Local (or Client-Side) 🛡️&lt;br&gt;
I decided I was done with "trusting" random servers. I wanted a tool that:&lt;/p&gt;

&lt;p&gt;Works 100% Offline (so I know data never leaves my machine).&lt;/p&gt;

&lt;p&gt;Has a "Diff Checker" (because comparing 2,000 lines of JSON by eye is impossible).&lt;/p&gt;

&lt;p&gt;Decodes JWTs safely (without sending my Auth Tokens to the cloud).&lt;/p&gt;

&lt;p&gt;So, I built it myself using React + Vite.&lt;/p&gt;

&lt;p&gt;Introducing JSON AIO (All-In-One) 🚀&lt;br&gt;
I call it JSON AIO. It is a lightweight, privacy-first developer workspace that runs entirely in your browser.&lt;/p&gt;

&lt;p&gt;👉 Try it here: &lt;strong&gt;&lt;a href="https://d21vtojgd3id3.cloudfront.net" rel="noopener noreferrer"&gt;https://d21vtojgd3id3.cloudfront.net&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;(It's hosted on AWS CloudFront, but once the page loads, you can disconnect your internet and it still works perfectly).&lt;/p&gt;

&lt;p&gt;Under the Hood 🛠️&lt;br&gt;
I didn't want just another text area. I wanted a VS Code-like experience.&lt;/p&gt;

&lt;p&gt;Engine: I used @monaco-editor/react to get that familiar VS Code feel (minimap, syntax highlighting, error detection).&lt;/p&gt;

&lt;p&gt;Architecture: Zero backend. Everything uses standard Web APIs (JSON.parse, navigator.clipboard, localStorage).&lt;/p&gt;

&lt;p&gt;Styling: Tailwind CSS (with a fully functional Dark/Light mode toggle).&lt;/p&gt;

&lt;p&gt;PWA: I added a Service Worker so you can install it to your dock and use it like a native app.&lt;/p&gt;

&lt;p&gt;Key Features&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;The "Privacy Shield" JWT Decoder Most JWT tools require a backend to decode tokens. Mine uses the jwt-decode library directly in the browser. You can paste your production tokens safely—they never touch a network request.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The Diff Checker I integrated the Monaco Diff Editor to show side-by-side comparisons of JSON files. It highlights changes in green/red just like Git.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;"Smart" Converter Ever get a log file where the JSON is stringified inside a string? ("{\"id\": 1...}"). The "Converter" tab handles un-escaping and re-formatting automatically.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Open Source &amp;amp; Free&lt;br&gt;
I built this primarily for myself, but I’m sharing it for any other devs who are paranoid about privacy (like me).&lt;/p&gt;

&lt;p&gt;Give it a spin and let me know what you think!&lt;/p&gt;

&lt;p&gt;🔗 Live Tool: &lt;strong&gt;&lt;a href="https://d21vtojgd3id3.cloudfront.net" rel="noopener noreferrer"&gt;https://d21vtojgd3id3.cloudfront.net&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>react</category>
      <category>security</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
