<?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: Holo Dev</title>
    <description>The latest articles on DEV Community by Holo Dev (@holo-dev).</description>
    <link>https://dev.to/holo-dev</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%2F4095647%2F3807faf9-a8ac-4679-a12e-6c71202c5074.png</url>
      <title>DEV Community: Holo Dev</title>
      <link>https://dev.to/holo-dev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/holo-dev"/>
    <language>en</language>
    <item>
      <title>Your JSON never leaves your machine</title>
      <dc:creator>Holo Dev</dc:creator>
      <pubDate>Wed, 26 Aug 2026 11:35:10 +0000</pubDate>
      <link>https://dev.to/holo-dev/your-json-never-leaves-your-machine-4b7o</link>
      <guid>https://dev.to/holo-dev/your-json-never-leaves-your-machine-4b7o</guid>
      <description>&lt;p&gt;I keep a tab with a JSON formatter open roughly 300 days a year. And roughly 300 days a year, that tab tries to sell me something.&lt;/p&gt;

&lt;p&gt;So I built &lt;a href="https://jsonkit.tools" rel="noopener noreferrer"&gt;jsonkit.tools&lt;/a&gt; — 24 browser-based dev tools under one roof. The browser tools run client-side. No signup, no upload. You paste, you get the result.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's actually in there
&lt;/h2&gt;

&lt;p&gt;JSON formatter with tree view, validators, converters between JSON/CSV/YAML/XML (both directions), Base64 and URL encoding, JSON diff, JSON-to-TypeScript, UUID and hash generators, and a timestamp converter. Each tool is its own page with its own URL — no SPA tab-switching.&lt;/p&gt;

&lt;h2&gt;
  
  
  The less common part: a REST API
&lt;/h2&gt;

&lt;p&gt;Most browser tool sites stop at the browser. I added &lt;a href="https://api.jsonkit.tools" rel="noopener noreferrer"&gt;api.jsonkit.tools&lt;/a&gt; — 28 endpoints with the same operations you get in the UI. The endpoints follow the same input/output contract.&lt;/p&gt;

&lt;p&gt;Why? Because if you're building automation or working with LLM agents, you want deterministic transformations — not a model guessing how to reformat your payload. One HTTP call, stable output, no surprises.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST https://api.jsonkit.tools/v1/json/format &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"input": "{\"a\":1,\"b\":2}", "indent": 2}'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Stack
&lt;/h2&gt;

&lt;p&gt;Astro with static generation. Each tool compiles to its own HTML page — fast to load, easy for search engines to index, and with zero client-side routing overhead. Dark theme by default.&lt;/p&gt;

&lt;p&gt;The tools themselves are vanilla JS components. No heavy framework runtime, no hydration penalty for what is essentially a text box and a function call.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://jsonkit.tools" rel="noopener noreferrer"&gt;jsonkit.tools&lt;/a&gt; — feedback welcome.&lt;/p&gt;

</description>
      <category>tools</category>
      <category>showdev</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
