<?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: Anirudha Sonwane</title>
    <description>The latest articles on DEV Community by Anirudha Sonwane (@anirudha_sonwane_ca3fc720).</description>
    <link>https://dev.to/anirudha_sonwane_ca3fc720</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%2F4002203%2Fded1a1e7-bc6c-400e-b920-a10e4852f5ce.png</url>
      <title>DEV Community: Anirudha Sonwane</title>
      <link>https://dev.to/anirudha_sonwane_ca3fc720</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anirudha_sonwane_ca3fc720"/>
    <language>en</language>
    <item>
      <title>I built an interactive JSON graph viewer that runs entirely in your browser</title>
      <dc:creator>Anirudha Sonwane</dc:creator>
      <pubDate>Mon, 27 Jul 2026 07:25:32 +0000</pubDate>
      <link>https://dev.to/anirudha_sonwane_ca3fc720/i-built-an-interactive-json-graph-viewer-that-runs-entirely-in-your-browser-mm6</link>
      <guid>https://dev.to/anirudha_sonwane_ca3fc720/i-built-an-interactive-json-graph-viewer-that-runs-entirely-in-your-browser-mm6</guid>
      <description>&lt;p&gt;Nested JSON is difficult to understand in a text editor.&lt;/p&gt;

&lt;p&gt;Tree views help, but once you're dealing with large API responses or deeply nested objects, following relationships becomes tedious. I wanted something more visual, so I built an &lt;strong&gt;interactive Graph View&lt;/strong&gt; for ToolReign's JSON Formatter.&lt;/p&gt;

&lt;p&gt;Instead of reading JSON line by line, you can explore it as a connected node graph.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✨ What it does
&lt;/h2&gt;

&lt;p&gt;Switch from &lt;strong&gt;Text&lt;/strong&gt;, &lt;strong&gt;Tree&lt;/strong&gt;, or &lt;strong&gt;Table&lt;/strong&gt; view to &lt;strong&gt;Graph&lt;/strong&gt;, and your JSON becomes an interactive diagram.&lt;/p&gt;

&lt;h3&gt;
  
  
  Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt; Objects and arrays become connected cards&lt;/li&gt;
&lt;li&gt; Strings, numbers, booleans, and null values stay inside their parent node&lt;/li&gt;
&lt;li&gt;🔗 Edges connect to the exact field they belong to (not just the center of the card)&lt;/li&gt;
&lt;li&gt; Expand or collapse nested branches&lt;/li&gt;
&lt;li&gt; Automatic graph layout powered by Dagre&lt;/li&gt;
&lt;li&gt; Type-aware rendering

&lt;ul&gt;
&lt;li&gt;Strings&lt;/li&gt;
&lt;li&gt;Numbers&lt;/li&gt;
&lt;li&gt;Booleans&lt;/li&gt;
&lt;li&gt;URLs&lt;/li&gt;
&lt;li&gt;Hex colors&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt; Powerful toolbar

&lt;ul&gt;
&lt;li&gt;Zoom&lt;/li&gt;
&lt;li&gt;Fit View&lt;/li&gt;
&lt;li&gt;Search with Previous/Next navigation&lt;/li&gt;
&lt;li&gt;Copy subtree&lt;/li&gt;
&lt;li&gt;Replay layout&lt;/li&gt;
&lt;li&gt;Layout settings (Left → Right or Top → Bottom)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt; Fullscreen mode for huge payloads&lt;/li&gt;
&lt;li&gt; Export as &lt;strong&gt;PNG&lt;/strong&gt; or &lt;strong&gt;SVG&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🔒 Privacy First
&lt;/h2&gt;

&lt;p&gt;Everything runs entirely in your browser.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; No uploads&lt;/li&gt;
&lt;li&gt; No accounts&lt;/li&gt;
&lt;li&gt; No servers processing your JSON&lt;/li&gt;
&lt;li&gt; Heavy layouts run in Web Workers for better performance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Your data never leaves your device.&lt;/p&gt;

&lt;h2&gt;
  
  
  Part of a Bigger JSON Toolkit
&lt;/h2&gt;

&lt;p&gt;The Graph View is built into ToolReign's JSON Formatter, which also includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Format &amp;amp; Beautify JSON&lt;/li&gt;
&lt;li&gt;Minify JSON&lt;/li&gt;
&lt;li&gt;Repair invalid JSON&lt;/li&gt;
&lt;li&gt;Auto-correct common syntax errors&lt;/li&gt;
&lt;li&gt;JSONPath queries&lt;/li&gt;
&lt;li&gt;JSON Schema validation&lt;/li&gt;
&lt;li&gt;Generate TypeScript, Go, and Rust models&lt;/li&gt;
&lt;li&gt;JSON Compare mode&lt;/li&gt;
&lt;li&gt;Shareable URLs&lt;/li&gt;
&lt;li&gt;YAML, CSV, and XML support&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Live Demo:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://toolreign.com/developer/json-formatter/" rel="noopener noreferrer"&gt;https://toolreign.com/developer/json-formatter/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Paste a messy API response, switch to &lt;strong&gt;Graph&lt;/strong&gt;, and explore the structure visually.&lt;/p&gt;

&lt;p&gt;I'd especially love feedback on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Performance with large arrays&lt;/li&gt;
&lt;li&gt;Deeply nested objects&lt;/li&gt;
&lt;li&gt;UI/UX improvements&lt;/li&gt;
&lt;li&gt;Bugs or edge cases&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you have ideas for new features, let me know. I'm actively improving the tool and would love to hear your feedback.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>productivity</category>
      <category>programming</category>
      <category>json</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>Anirudha Sonwane</dc:creator>
      <pubDate>Wed, 08 Jul 2026 05:04:32 +0000</pubDate>
      <link>https://dev.to/anirudha_sonwane_ca3fc720/-38np</link>
      <guid>https://dev.to/anirudha_sonwane_ca3fc720/-38np</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/anirudha_sonwane_ca3fc720/i-built-a-free-online-toolbox-with-260-tools-heres-the-tech-stack-and-what-i-learned-2o44" class="crayons-story__hidden-navigation-link"&gt;I built a free online toolbox with 280+ tools — here's the tech stack and what I learne8&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/anirudha_sonwane_ca3fc720" class="crayons-avatar  crayons-avatar--l  "&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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4002203%2Fded1a1e7-bc6c-400e-b920-a10e4852f5ce.png" alt="anirudha_sonwane_ca3fc720 profile" class="crayons-avatar__image" width="96" height="96"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/anirudha_sonwane_ca3fc720" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Anirudha Sonwane
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Anirudha Sonwane
                
              
              &lt;div id="story-author-preview-content-3990065" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/anirudha_sonwane_ca3fc720" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4002203%2Fded1a1e7-bc6c-400e-b920-a10e4852f5ce.png" class="crayons-avatar__image" alt="" width="96" height="96"&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Anirudha Sonwane&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/anirudha_sonwane_ca3fc720/i-built-a-free-online-toolbox-with-260-tools-heres-the-tech-stack-and-what-i-learned-2o44" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;Jun 26&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/anirudha_sonwane_ca3fc720/i-built-a-free-online-toolbox-with-260-tools-heres-the-tech-stack-and-what-i-learned-2o44" id="article-link-3990065"&gt;
          I built a free online toolbox with 280+ tools — here's the tech stack and what I learne8
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/ai"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;ai&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/nextjs"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;nextjs&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/webdev"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;webdev&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/programming"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;programming&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
            &lt;a href="https://dev.to/anirudha_sonwane_ca3fc720/i-built-a-free-online-toolbox-with-260-tools-heres-the-tech-stack-and-what-i-learned-2o44#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              

              1&lt;span class="hidden s:inline"&gt;&amp;nbsp;comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            4 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial crayons-icon c-btn__icon"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success crayons-icon c-btn__icon"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
    </item>
    <item>
      <title>I built a free online toolbox with 280+ tools — here's the tech stack and what I learne8</title>
      <dc:creator>Anirudha Sonwane</dc:creator>
      <pubDate>Fri, 26 Jun 2026 06:45:15 +0000</pubDate>
      <link>https://dev.to/anirudha_sonwane_ca3fc720/i-built-a-free-online-toolbox-with-260-tools-heres-the-tech-stack-and-what-i-learned-2o44</link>
      <guid>https://dev.to/anirudha_sonwane_ca3fc720/i-built-a-free-online-toolbox-with-260-tools-heres-the-tech-stack-and-what-i-learned-2o44</guid>
      <description>&lt;p&gt;Every small task used to mean a new tab. JSON formatter on one site, GST calculator on another, PDF merger somewhere that wanted my email before it would merge two pages. Ads everywhere, slow UIs, and that low-grade worry about uploading a payslip or invoice to a server I do not control. I got tired of juggling twenty bookmarks for work that should take thirty seconds — so I started building one place for all of it.&lt;/p&gt;

&lt;h2&gt;
  
  
  What ToolReign is
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://toolreign.com" rel="noopener noreferrer"&gt;ToolReign&lt;/a&gt; is a free online toolbox: &lt;strong&gt;280+ utilities across 15 categories&lt;/strong&gt;, all running in your browser. Developer tools (JSON formatter, JWT decoder, API client), text utilities, SEO helpers, PDF and image tools, spreadsheets, and a finance section I built with India in mind — GST with CGST/SGST/IGST splits, EMI and SIP calculators, HRA exemption, gratuity, income tax estimates, and more.&lt;/p&gt;

&lt;p&gt;The idea is straightforward: open a tool, do the work, leave. No signup wall, no file uploads to a backend, no account to manage. I am &lt;a href="https://www.linkedin.com/in/anirudha-sonwane/" rel="noopener noreferrer"&gt;Anirudha Sonwane&lt;/a&gt;, a Senior Software Engineer at Giant Leap Systems in Pune. ToolReign is a side project I build around my day job — not a pitch deck, just something I wished existed.&lt;/p&gt;

&lt;h2&gt;
  
  
  The tech stack decisions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Next.js 14 App Router and static export
&lt;/h3&gt;

&lt;p&gt;Each tool lives at its own route under &lt;code&gt;src/app/{category}/{tool-slug}/&lt;/code&gt;. That maps cleanly to SEO: one URL, one search intent, one page of metadata. The site exports statically (&lt;code&gt;output: 'export'&lt;/code&gt;), so production deployment is uploading an &lt;code&gt;out/&lt;/code&gt; folder to static hosting — no Node server to babysit.&lt;/p&gt;

&lt;p&gt;The App Router made this scale. Add a page component, register the slug in &lt;code&gt;tool-registry.json&lt;/code&gt;, and the sitemap, category hubs, and search index pick it up automatically. At 260+ tools, hand-maintaining URLs would have broken within a month.&lt;/p&gt;

&lt;h3&gt;
  
  
  100% client-side — the decision that shaped everything
&lt;/h3&gt;

&lt;p&gt;This was the core architectural bet, and it is also the privacy story: &lt;strong&gt;your data never leaves the browser.&lt;/strong&gt; Finance calculators are plain TypeScript math with &lt;code&gt;useMemo&lt;/code&gt;. PDF merge and split use &lt;strong&gt;pdf-lib&lt;/strong&gt; and &lt;strong&gt;pdfjs-dist&lt;/strong&gt; in-tab. Images go through the Canvas API. Audio through the Web Audio API.&lt;/p&gt;

&lt;p&gt;The engineering is harder than the marketing. A five-file PDF merge on a mid-range phone can freeze the main thread if you are careless. I had to think about memory when combining multi-megabyte documents, show progress where it matters, and avoid loading entire files when a page-range operation would do. Getting "merge these PDFs" to feel instant without a server was more interesting than wiring another REST endpoint.&lt;/p&gt;

&lt;h3&gt;
  
  
  The supporting cast
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS&lt;/strong&gt; and &lt;strong&gt;next-themes&lt;/strong&gt; for light, dark, and system mode — calculators get used late at night more than I expected.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Recharts&lt;/strong&gt; for finance visualisations: EMI principal-vs-interest donuts, SIP growth curves.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DOMPurify&lt;/strong&gt; anywhere user-adjacent HTML might render — small surface area, non-negotiable.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security headers&lt;/strong&gt; in &lt;code&gt;next.config.js&lt;/code&gt; — CSP, HSTS, &lt;code&gt;X-Frame-Options&lt;/code&gt;, a tight Permissions-Policy. Static sites still get scanned.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PWA&lt;/strong&gt; via &lt;code&gt;next-pwa&lt;/code&gt; so repeat visitors can install the toolbox like an app.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  One scaling problem: metadata without drift
&lt;/h3&gt;

&lt;p&gt;Early on I realised I could not hand-write Open Graph tags for hundreds of tools. Everything funnels through a shared helper:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// src/lib/seo.ts (simplified)&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;buildMetadata&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt; &lt;span class="nx"&gt;title&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;description&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;path&lt;/span&gt; &lt;span class="p"&gt;}:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;title&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;
  &lt;span class="nx"&gt;description&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;
  &lt;span class="nx"&gt;path&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;
&lt;span class="p"&gt;}):&lt;/span&gt; &lt;span class="nx"&gt;Metadata&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;canonical&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;SITE&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;url&lt;/span&gt;&lt;span class="p"&gt;}${&lt;/span&gt;&lt;span class="nx"&gt;path&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;replace&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sr"&gt;/&lt;/span&gt;&lt;span class="se"&gt;([^/])&lt;/span&gt;&lt;span class="sr"&gt;$/&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;$1/&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;default&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;title&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt; | &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;SITE&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;name&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;template&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;`%s | &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;SITE&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;name&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt; &lt;span class="p"&gt;},&lt;/span&gt;
    &lt;span class="nx"&gt;description&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;keywords&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nf"&gt;extractKeywords&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;title&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;description&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
    &lt;span class="na"&gt;openGraph&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;website&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;url&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;canonical&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;title&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;description&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;locale&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;en_IN&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="p"&gt;},&lt;/span&gt;
    &lt;span class="na"&gt;twitter&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;card&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;summary_large_image&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;title&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;description&lt;/span&gt; &lt;span class="p"&gt;},&lt;/span&gt;
    &lt;span class="na"&gt;alternates&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;canonical&lt;/span&gt; &lt;span class="p"&gt;},&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each tool page calls &lt;code&gt;buildMetadata()&lt;/code&gt; once. Canonical URLs, Twitter cards, and &lt;code&gt;en_IN&lt;/code&gt; locale stay consistent. The sitemap reads from the same &lt;code&gt;tool-registry.json&lt;/code&gt;, so search indexing and on-site navigation never disagree about what exists.&lt;/p&gt;

&lt;h2&gt;
  
  
  What surprised me
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;SEO is half the product.&lt;/strong&gt; I assumed I would spend ninety percent of my time on calculator logic. Reality: JSON-LD per tool (&lt;code&gt;WebApplication&lt;/code&gt;, FAQ schema, HowTo steps), breadcrumb markup, related-tool links, synonym keywords for long-tail queries, collapsible formula explainers on finance pages. Google's AI overviews love "how is EMI calculated?" — a tool site competes on clarity as much as code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;India-specific finance tools punched above their weight.&lt;/strong&gt; Global EMI calculators are everywhere. Adding GST split logic, HRA exemption rules, and lakh/crore formatting with &lt;code&gt;en-IN&lt;/code&gt; locale matched how people actually search here. Locale is not polish — it is a product decision.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Client-side PWAs are more capable than I assumed.&lt;/strong&gt; Installable shell, offline-friendly caching, no account — it fits the "I just need to convert this PDF" use case better than a bloated web app.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I would do differently:&lt;/strong&gt; invest in a stricter component scaffold earlier — shared input toolbars, validation helpers, result placeholders, WhatsApp share buttons, formula explainers — before the finance silo grew past twenty calculators. Copy-paste refactors across similar tools cost more time than the shared abstractions saved later.&lt;/p&gt;

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

&lt;p&gt;I am continuing down the long tail: more text and developer utilities, deeper finance coverage, and better mobile UX on canvas-heavy tools like handwriting generators. AdSense is on the horizon, but the constraint stays the same — do not interrupt the work surface.&lt;/p&gt;

&lt;p&gt;If you try a tool and something feels off, I genuinely want to hear it. Comment here or use the contact form on the site. Broken on Safari? Confusing GST inclusive vs exclusive? Tell me.&lt;/p&gt;

&lt;h2&gt;
  
  
  Closing
&lt;/h2&gt;

&lt;p&gt;ToolReign started as "one bookmark instead of twenty" and turned into a lesson in static SEO at scale, in-browser media processing, and building for a specific audience without locking everyone else out. It is a side project built after hours in Pune, alongside my work at Giant Leap Systems.&lt;/p&gt;

&lt;p&gt;Happy to answer questions about the stack, static export tradeoffs, or how to structure a registry when your tool count stops being cute.&lt;/p&gt;

&lt;p&gt;Check it out at &lt;a href="https://toolreign.com" rel="noopener noreferrer"&gt;toolreign.com&lt;/a&gt; — completely free, no account needed.&lt;/p&gt;

&lt;p&gt;🚀 Tool Reign is live on Product Hunt today!&lt;/p&gt;

&lt;p&gt;If you found this useful, your support means everything.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://www.producthunt.com/products/tool-reign" rel="noopener noreferrer"&gt;https://www.producthunt.com/products/tool-reign&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>nextjs</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
