<?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: bhushan kumar singh</title>
    <description>The latest articles on DEV Community by bhushan kumar singh (@bhushankumarsingh).</description>
    <link>https://dev.to/bhushankumarsingh</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%2F3951019%2F9499f61c-6240-47fb-ac37-af1bb7878b4c.jpg</url>
      <title>DEV Community: bhushan kumar singh</title>
      <link>https://dev.to/bhushankumarsingh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bhushankumarsingh"/>
    <language>en</language>
    <item>
      <title>I built a free multi-tab JSON editor — here's what I learned</title>
      <dc:creator>bhushan kumar singh</dc:creator>
      <pubDate>Mon, 25 May 2026 16:37:28 +0000</pubDate>
      <link>https://dev.to/bhushankumarsingh/i-built-a-free-multi-tab-json-editor-heres-what-i-learned-2ffe</link>
      <guid>https://dev.to/bhushankumarsingh/i-built-a-free-multi-tab-json-editor-heres-what-i-learned-2ffe</guid>
      <description>&lt;p&gt;I've been working with JSON a lot — debugging API responses, comparing&lt;br&gt;&lt;br&gt;
  payloads, fixing malformed data. Every time I reached for an online JSON&lt;br&gt;&lt;br&gt;
  tool, something was missing. So I built my own.                                                                                                                                                                   &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;JSON Wallet&lt;/strong&gt; is a free, browser-only JSON editor at &lt;a href="https://jsonwallet.com" rel="noopener noreferrer"&gt;jsonwallet.com&lt;/a&gt;.                                                                                                                    &lt;/p&gt;

&lt;p&gt;## What it does                                                                                                                                                                                                     &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Multi-tab editing&lt;/strong&gt; — work with multiple JSON files at once, tabs
persist in localStorage across sessions
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tree, Table &amp;amp; Text modes&lt;/strong&gt; — powered by vanilla-jsoneditor
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Live validation&lt;/strong&gt; — instant ✓ Valid / ✗ Invalid badge as you type
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Compare&lt;/strong&gt; — side-by-side diff between two JSONs&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Repair&lt;/strong&gt; — automatically fixes broken/malformed JSON
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stringify / Unstringify&lt;/strong&gt; — parse stringified JSON back to readable format
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Escape / Unescape&lt;/strong&gt; — add or strip slashes in JSON strings
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Drag &amp;amp; drop&lt;/strong&gt; — drag a &lt;code&gt;.json&lt;/code&gt; file directly onto the editor
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Load from URL&lt;/strong&gt; — paste an API endpoint, load the response instantly
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dark / Light theme&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PWA&lt;/strong&gt; — installable from Chrome
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;## Tech stack                                                                                                                                                                                                       &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;React 18 + TypeScript + Vite
&lt;/li&gt;
&lt;li&gt;vanilla-jsoneditor for the core editor
&lt;/li&gt;
&lt;li&gt;Ant Design for UI components
&lt;/li&gt;
&lt;li&gt;Deployed on a custom domain (Hostinger)
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;## What I learned                                                                                                                                                                                                   &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. vanilla-jsoneditor is powerful but opinionated&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
  It ships with its own menu bar and mode switcher. Customising it means&lt;br&gt;&lt;br&gt;
  using &lt;code&gt;onRenderMenu&lt;/code&gt; to inject your own buttons — not obvious from the docs.                                                                                                                                        &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Bundle size matters&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
  The initial bundle was 1.5MB in a single chunk. After lazy loading the&lt;br&gt;&lt;br&gt;
  editor component and splitting antd/vanilla-jsoneditor into separate chunks,&lt;br&gt;&lt;br&gt;
  the initial JS dropped to ~10KB. PageSpeed went from 70 → 81.                                                                                                                                                       &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Replacing native browser dialogs&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
  vanilla-jsoneditor calls &lt;code&gt;window.alert()&lt;/code&gt; on JSON errors. Intercepting it&lt;br&gt;&lt;br&gt;
  via the &lt;code&gt;onError&lt;/code&gt; callback and replacing with Ant Design notifications&lt;br&gt;&lt;br&gt;
  made the UX much cleaner.                                                                                                                                                                                           &lt;/p&gt;

&lt;p&gt;## Try it                                                                                                                                                                                                           &lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://jsonwallet.com" rel="noopener noreferrer"&gt;jsonwallet.com&lt;/a&gt; — free, no signup, no data&lt;br&gt;&lt;br&gt;
  sent to any server.                                                                                                                                                                                               &lt;/p&gt;

&lt;p&gt;Would love feedback on what features are missing!   &lt;/p&gt;

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