The Problem: The "JSON Fatigue"
We’ve all been there. You copy a truncated JSON string from a production log, paste it into a web viewer, and... Syntax Error. Or worse, you’re looking at a massive array of 500+ products, and trying to find one specific price value involves expanding nested tree nodes until your fingers hurt.
I got tired of tools that were either:
- Bloated with ads and tracking.
- Slow when handling large payloads.
- Inflexible when dealing with "broken" JSON fragments.
So, I built Zen-JSON.
What Makes Zen-JSON Different?
The "Airtable" Experience for JSON
Tree views are great for nested objects, but they are terrible for lists. I implemented a Table View that feels like a spreadsheet. If you have an array of objects, you can view them in a high-performance grid, making it 10x faster to scan and compare data.Smart Auto-Fix (The Life-Saver)
How many times have you copied a JSON fragment that was missing a closing brace or had trailing commas? Instead of manually fixing the syntax just to see the data, Zen-JSON has an Auto-Fix toggle that repairs common syntax errors on the fly.Data Science Ready (DS Export)
As someone who often needs to move data from an API response into a notebook or a report, I added a DS Export button. You can instantly turn that messy JSON into a Pandas or Python DICT without writing a single line of Python.Privacy by Design
In 2026, you shouldn't have to upload your company's sensitive API data to a random server just to format it.
Zen-JSON is 100% client-side. All the processing, minifying, and "fixing" happens right in your browser. No data ever leaves your machine.
The Tech Stack
Since the project is hosted on rusting.dev, I focused heavily on performance. I wanted something that felt "instant" even with 10MB+ files. By offloading heavy lifting and keeping the UI "Zen" (minimalist and dark-themed), it fits right into a modern dev workflow.
Check it out
I'd love for you to take it for a spin and let me know what you think. Specifically:
Does the Table View handle your largest JSON files smoothly?
Are there any "broken" JSON patterns that the Auto-Fix missed?
Link: jsonviewer.rusting.dev

Top comments (0)