top | item 42250921

Show HN: I created a lightweight JavaScript library to visualize JSON as a graph

62 points| lou_alcala | 1 year ago |github.com

46 comments

order
[+] lou_alcala|1 year ago|reply
Hi HN,

I’ve been working on JSONtr.ee, a web platform for visualizing and graphing JSON data. While building it, I ended up creating my own lightweight JavaScript library to help anyone convert a JSON file into a schema graph.

Before creating this library, I used MermaidJS, but I ran into significant limitations, especially with large and deeply nested JSON objects. My library was built to handle these cases better and to offer more flexibility for customization. After solving my own problem, I decided to make it available for free to anyone who might find it useful.

Key features: Transforms JSON into schema graphs. Handles large and complex JSON objects seamlessly. Built with simplicity in mind – dependency-free and easy to integrate.

Why I made this: While working with APIs and large webhook payloads, I struggled to understand nested structures using standard tools. This library makes it easier to visualize the data as a graph and explore it interactively.

I’d love to hear your feedback, suggestions, or any ideas for improvement.

Thanks for taking a look!

[+] mattvr|1 year ago|reply
The example on the site is a very simple JSON object that doesn't demonstrate JSONtr.ee's potential at all.

To showcase it better, I'd like to see more complex objects on the initial reveal, so I don't have to go and find & format a JSON object just to see if the app/library is worth using yet!

[+] politelemon|1 year ago|reply
I like it, one piece of feedback I have is - the export to PNG button, I wasn't expecting it to be a screenshot of the JSON, I thought it would be the graph; at least to me that would make more sense... paste JSON, see graph, export image of graph. What do you think.
[+] tasn|1 year ago|reply
Very cool, I shared with the team! We (Svix) show a lot of JSON, so this could be super useful for us. Thanks!
[+] santa_boy|1 year ago|reply
This is quite beautiful. I love it! Will use this as an alternative to my mindmap software!
[+] codetiger|1 year ago|reply
In safari, the text is rendering outside of the shape. You might want to take a look at that.
[+] newusertoday|1 year ago|reply
very nice approach to create svg from json and using css transform for zoom translate.Lightweight and efficient kudos.
[+] tie_|1 year ago|reply
Very cool project and would be super useful with something like GraphQL, which tends to produce big nested JSON objects. Thanks for sharing it!

One improvement in my eyes would be to remove the "connector" boxes, like `members (2): "Array"` and `powers (3): "Array"` and have the arrow go straight to the array property. Those connector boxes take up a lot of real estate without conveying new information.

[+] demaga|1 year ago|reply
Great idea! Maybe they can write "members" and "powers" above the "column" with actual data boxes.
[+] mg|1 year ago|reply
Beautiful.

Single file, 187 lines of JavaScript, no dependencies, does one thing and does it well.

I wish there was a way to search for libraries like this one. Almost every time I look for some piece of open source software, I end up writing it myself because all the solutions I find are overcomplicated and try to do too many things.

[+] h1fra|1 year ago|reply
Except this file does almost nothing compared to the actual website. The website is worth 1Mb of dependencies
[+] chipdart|1 year ago|reply
> Single file, 187 lines of JavaScript, no dependencies, does one thing and does it well.

Even though I understood your point, a cursory glance suggests it only maps a JavaScript object to a SVG. Hardly something with more than one responsibility, or something you need anything other than plain JavaScript to do.

[+] deskr|1 year ago|reply
My thoughts exactly. I was expecting the classic millions of dependencies. Very nice!
[+] dchuk|1 year ago|reply
Am I missing something or does this just completely not do anything on iOS/mobile? I see in the json editor a single object with two keys, and then no visual tree rendering whatsoever
[+] lou_alcala|1 year ago|reply
Sorry this was intensionally, I couldn't find a way to show the graph in mobile so I just hide the div. I will add a tab or a button to switch between the json and the graph.
[+] rendaw|1 year ago|reply
This seems a lot like jless, which I've used a _lot_ for exploring complex json files. https://jless.io/
[+] just-tom|1 year ago|reply
Can you explain a little what are the similarities you found?
[+] WA|1 year ago|reply
Perfect candidate for a nice, simple, self-contained web component / custom element. Instead of:

    <div id="json-tree"></div>
    ...
    const container = document.getElementById('json-tree');
    container.innerHTML = generateJSONTree(jsonData);
You'd have this:

    <json-tree id="json-tree"></json-tree>
    ...
    const container = document.getElementById('json-tree');
    container.jsonTree = jsonData;
Attributes not necessary, simply pass the json data as a prop. Granted, the difference isn't that big, but this is where web components shine.
[+] dankwizard|1 year ago|reply
Really clean design. I generated a bunch of complex deeply strucutred dummy JSON data and the resulting visual wasn't bad!

I like the name too! A small suggestion is don't force yourself to call it Jsontr.ee because of the cool domain. Getting to the line "Render the Tree Diagram: Use the jsontr.ee function to visualize the JSON data." -- Just use jsontree :-)

[+] pcthrowaway|1 year ago|reply
Note that HTML tags contained in the json will be injected into the DOM.

Other than that, looks beautiful

[+] scho3000|1 year ago|reply
Cool stuff! Found a bug: Changing e.g. "Jane Wilson" to something longer like "Jane Sarah Hildegard Wilson" in your example renders the arrows to the powers incorrectly.
[+] lou_alcala|1 year ago|reply
Thanks for letting me know this. I will fix asap
[+] thisgoodlife|1 year ago|reply
Cool project! If the input is an array of objects, the output graph is just a single block. Is this the expected output?
[+] lou_alcala|1 year ago|reply
Thanks for letting me know this, I will make some tests and deploy the fix.
[+] n0id34|1 year ago|reply
Very nice, what's the main use case? vs just looking at the formatted JSON?
[+] lou_alcala|1 year ago|reply
Hi, I used for debug raw json from webhooks
[+] nirav72|1 year ago|reply
This is an amazing project.

One suggestion - Make the JSON editor panel collapsible or resizable.

[+] subhashp|1 year ago|reply
Looks gorgeous! It looks like a MindMap!!
[+] dcreater|1 year ago|reply
How is this different to jsoncrack.com?
[+] politelemon|1 year ago|reply
Seems like jsoncrack is a product with a paid plan, this one jsontr.ee is standalone (so far). I also found the performance of the graph wasn't very smooth on jsoncrack.
[+] byyoung3|1 year ago|reply
A VSCode extension would be cool
[+] kanishkdan98|1 year ago|reply
pretty cool! there's a limit to how much you can zoom out, I'd have liked that. Also the ability to hide the json input area.