Skip to content

Instantly share code, notes, and snippets.

@llaughlin
Last active March 10, 2026 18:31
Show Gist options
  • Select an option

  • Save llaughlin/5630156b718c1c5e6a08025f4eb789d7 to your computer and use it in GitHub Desktop.

Select an option

Save llaughlin/5630156b718c1c5e6a08025f4eb789d7 to your computer and use it in GitHub Desktop.
JSON Viewer Pro
#rbrahul-awesome-json{
font-size: 10pt;
}
.property{
color: #86AED6;
}
.json-literal-numeric{
color: #D6AED6;
}
.json-literal-url {
color: #DBCF80;
}
.json-literal-string{
color:#AED686;
}
.json-literal{
color:#D7AF87;
}
.json-literal-boolean{
color: #4e94ce;
}
.json-dict {
border: solid 1px #5d6d7eaa;
border-radius: 5px;
background-color: #7771;
}
@web-apply
Copy link

I made a similar app as well: https://simple.tools/json-viewer. It’s designed to help you understand and explore JSON data in a very simple and clean way. The tool formats and visualizes JSON so the structure becomes easier to read, debug, and work with—especially when dealing with large or nested objects. I mainly built it to make inspecting JSON faster and less confusing during development.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment