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 a…
Show HN: I created a lightweight JavaScript library to visualize JSON as a graph
21–30 of 48 posts
Re: Show HN: I created a lightweight JavaScript library to visualize JSON as a graph
#22Single 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.
Re: Show HN: I created a lightweight JavaScript library to visualize JSON as a graph
#23Hi 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 a…
Re: Show HN: I created a lightweight JavaScript library to visualize JSON as a graph
#24How is this different to jsoncrack.com?
Re: Show HN: I created a lightweight JavaScript library to visualize JSON as a graph
#25Hi 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 a…
Re: Show HN: I created a lightweight JavaScript library to visualize JSON as a graph
#26Hi 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 a…
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.
Re: Show HN: I created a lightweight JavaScript library to visualize JSON as a graph
#27Re: Show HN: I created a lightweight JavaScript library to visualize JSON as a graph
#28Very nice, what's the main use case? vs just looking at the formatted JSON?
Re: Show HN: I created a lightweight JavaScript library to visualize JSON as a graph
#29Re: Show HN: I created a lightweight JavaScript library to visualize JSON as a graph
#30Beautiful. 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.
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.