<?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>Forem: Gonzalo Barrera</title>
    <description>The latest articles on Forem by Gonzalo Barrera (@barrerasaezgonzalo).</description>
    <link>https://forem.com/barrerasaezgonzalo</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%2F3507820%2F372a43cd-a228-4d05-977a-08315f27c71a.png</url>
      <title>Forem: Gonzalo Barrera</title>
      <link>https://forem.com/barrerasaezgonzalo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/barrerasaezgonzalo"/>
    <language>en</language>
    <item>
      <title>JSON Formatter &amp; Validator: Make Your JSON Readable (and Error-Free)</title>
      <dc:creator>Gonzalo Barrera</dc:creator>
      <pubDate>Wed, 25 Mar 2026 22:46:43 +0000</pubDate>
      <link>https://forem.com/barrerasaezgonzalo/json-formatter-validator-make-your-json-readable-and-error-free-24ic</link>
      <guid>https://forem.com/barrerasaezgonzalo/json-formatter-validator-make-your-json-readable-and-error-free-24ic</guid>
      <description>&lt;p&gt;Working with JSON is part of everyday life as a developer. Whether you're dealing with APIs, config files, or debugging responses, you've probably faced messy or broken JSON at some point.&lt;/p&gt;

&lt;p&gt;That’s where a JSON formatter and validator becomes essential.&lt;/p&gt;

&lt;p&gt;👉 Try it here: &lt;a href="https://devtools.cl/tools/json-formatter" rel="noopener noreferrer"&gt;https://devtools.cl/tools/json-formatter&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  What is a JSON Formatter?
&lt;/h2&gt;

&lt;p&gt;A JSON formatter is a tool that takes raw or minified JSON and transforms it into a clean, readable structure with proper indentation.&lt;/p&gt;

&lt;p&gt;Instead of this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nl"&gt;"user"&lt;/span&gt;&lt;span class="p"&gt;:{&lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="s2"&gt;"John"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="nl"&gt;"age"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="mi"&gt;30&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="nl"&gt;"roles"&lt;/span&gt;&lt;span class="p"&gt;:[&lt;/span&gt;&lt;span class="s2"&gt;"admin"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="s2"&gt;"editor"&lt;/span&gt;&lt;span class="p"&gt;]}}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You get this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"user"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"John"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"age"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;30&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"roles"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"admin"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"editor"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Much better, right?&lt;/p&gt;




&lt;h2&gt;
  
  
  Why You Should Use One
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Easier Debugging
&lt;/h3&gt;

&lt;p&gt;Readable JSON makes it much easier to spot errors or missing fields.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Validate Syntax Instantly
&lt;/h3&gt;

&lt;p&gt;A good formatter doesn't just prettify — it also tells you if your JSON is invalid.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Better Understanding of Data
&lt;/h3&gt;

&lt;p&gt;Nested structures become clear when properly formatted.&lt;/p&gt;




&lt;h2&gt;
  
  
  Features of This Tool
&lt;/h2&gt;

&lt;p&gt;The JSON Formatter &amp;amp; Validator on devtools.cl was built with simplicity and privacy in mind:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ Instant formatting&lt;/li&gt;
&lt;li&gt;✅ Real-time validation&lt;/li&gt;
&lt;li&gt;✅ Clear error feedback&lt;/li&gt;
&lt;li&gt;✅ Copy to clipboard&lt;/li&gt;
&lt;li&gt;🔒 100% client-side (your data never leaves your browser)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is especially important if you're working with sensitive data or tokens.&lt;/p&gt;




&lt;h2&gt;
  
  
  How to Use It
&lt;/h2&gt;

&lt;p&gt;Using the tool is straightforward:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Paste your JSON into the input panel&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;"Format JSON"&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;View the formatted output instantly&lt;/li&gt;
&lt;li&gt;Copy it if needed&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If your JSON is invalid, you'll get a clear error message so you can fix it quickly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Example Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Debugging API responses&lt;/li&gt;
&lt;li&gt;Cleaning up JSON logs&lt;/li&gt;
&lt;li&gt;Validating request payloads&lt;/li&gt;
&lt;li&gt;Working with configuration files&lt;/li&gt;
&lt;li&gt;Learning JSON structure&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Built for Developers
&lt;/h2&gt;

&lt;p&gt;This tool is part of a growing collection of utilities at &lt;strong&gt;devtools.cl&lt;/strong&gt;, a project focused on lightweight, fast, and privacy-friendly tools for developers. &lt;/p&gt;

&lt;p&gt;No fluff, no tracking, just useful tools.&lt;/p&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;If you work with APIs or data structures, a JSON formatter isn’t optional — it’s essential.&lt;/p&gt;

&lt;p&gt;Having a fast, local, and reliable one can save you a lot of time (and frustration).&lt;/p&gt;

&lt;p&gt;👉 Give it a try: &lt;a href="https://devtools.cl/tools/json-formatter" rel="noopener noreferrer"&gt;https://devtools.cl/tools/json-formatter&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;If you found this useful, feel free to check out the rest of the tools — more coming soon 🚀&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>json</category>
      <category>formatter</category>
      <category>programming</category>
    </item>
    <item>
      <title>I got tired of switching between dev tools… so I built my own</title>
      <dc:creator>Gonzalo Barrera</dc:creator>
      <pubDate>Fri, 20 Mar 2026 06:46:28 +0000</pubDate>
      <link>https://forem.com/barrerasaezgonzalo/i-got-tired-of-switching-between-dev-tools-so-i-built-my-own-54im</link>
      <guid>https://forem.com/barrerasaezgonzalo/i-got-tired-of-switching-between-dev-tools-so-i-built-my-own-54im</guid>
      <description>&lt;h2&gt;
  
  
  I got tired of switching between dev tools… so I built my own
&lt;/h2&gt;

&lt;p&gt;As a developer, I kept running into the same small frustration over and over again.&lt;/p&gt;

&lt;p&gt;Format some JSON → open a site&lt;br&gt;
Decode a Base64 string → another site&lt;br&gt;
Generate a UUID → another tab&lt;br&gt;
Test a cron expression → yet another tool&lt;/p&gt;

&lt;p&gt;It sounds trivial, but it adds up. Context switching kills flow.&lt;/p&gt;

&lt;p&gt;So I decided to build my own collection of developer tools — all in one place.&lt;/p&gt;
&lt;h2&gt;
  
  
  The idea
&lt;/h2&gt;

&lt;p&gt;I wanted something:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fast&lt;/li&gt;
&lt;li&gt;Minimal&lt;/li&gt;
&lt;li&gt;No login&lt;/li&gt;
&lt;li&gt;No distractions&lt;/li&gt;
&lt;li&gt;And most importantly: &lt;strong&gt;privacy-first&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So I built 👉 &lt;a href="https://devtools.cl" rel="noopener noreferrer"&gt;https://devtools.cl&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  What makes it different?
&lt;/h2&gt;

&lt;p&gt;Most online tools send your data to a server.&lt;/p&gt;

&lt;p&gt;Mine don’t.&lt;/p&gt;

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

&lt;p&gt;That means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your JSON never leaves your machine&lt;/li&gt;
&lt;li&gt;Your tokens are never stored&lt;/li&gt;
&lt;li&gt;Your data stays yours&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This was especially important for things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JWT debugging&lt;/li&gt;
&lt;li&gt;JSON formatting&lt;/li&gt;
&lt;li&gt;Hash generation&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Built with Next.js (and keeping it simple)
&lt;/h2&gt;

&lt;p&gt;The whole project is built with Next.js and deployed on Vercel.&lt;/p&gt;

&lt;p&gt;One key decision I made early:&lt;/p&gt;

&lt;p&gt;👉 Keep everything client-side&lt;/p&gt;

&lt;p&gt;No backend. No database. No API calls.&lt;/p&gt;

&lt;p&gt;Just pure frontend tools doing one thing well.&lt;/p&gt;

&lt;p&gt;Here’s a simplified example of the JSON formatter logic:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;format&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;try&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;parsed&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;JSON&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;parse&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;input&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="nf"&gt;setOutput&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;JSON&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;stringify&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;parsed&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kc"&gt;null&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;catch&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nf"&gt;setOutput&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Invalid JSON&lt;/span&gt;&lt;span class="dl"&gt;"&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;Simple, fast, and reliable.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current tools
&lt;/h2&gt;

&lt;p&gt;So far I’ve built tools like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JSON Formatter &amp;amp; Validator&lt;/li&gt;
&lt;li&gt;Base64 Encoder / Decoder&lt;/li&gt;
&lt;li&gt;JWT Debugger&lt;/li&gt;
&lt;li&gt;Password Generator&lt;/li&gt;
&lt;li&gt;UUID Generator&lt;/li&gt;
&lt;li&gt;SQL Formatter&lt;/li&gt;
&lt;li&gt;URL Encoder / Decoder&lt;/li&gt;
&lt;li&gt;HTML Beautifier&lt;/li&gt;
&lt;li&gt;CSS Minifier&lt;/li&gt;
&lt;li&gt;Markdown Preview&lt;/li&gt;
&lt;li&gt;Cron Expression Editor&lt;/li&gt;
&lt;li&gt;SHA-256 Generator&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And I’m adding more regularly.&lt;/p&gt;

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

&lt;p&gt;A few takeaways from building this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Small tools are surprisingly useful&lt;/li&gt;
&lt;li&gt;Performance matters more than features&lt;/li&gt;
&lt;li&gt;Developers really value privacy (more than I expected)&lt;/li&gt;
&lt;li&gt;Shipping fast beats overthinking&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;I’m currently working on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Improving SEO (so people can actually find it 😅)&lt;/li&gt;
&lt;li&gt;Adding more niche tools&lt;/li&gt;
&lt;li&gt;Writing short guides for each tool&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Would love your feedback
&lt;/h2&gt;

&lt;p&gt;If you have ideas for tools I should add, I’m all ears.&lt;/p&gt;

&lt;p&gt;Or if something feels off, slow, or missing — tell me.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://devtools.cl" rel="noopener noreferrer"&gt;https://devtools.cl&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Thanks for reading 🙌&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>development</category>
    </item>
  </channel>
</rss>
