Yet another JSON visualizer. Made with Vue.js and Google Material Design Lite.
A tiny application that visualizes the JSON response from an api call. I often feel i am missing a tool for this. Much more could be refined but other interesting things lies ahead 😉. All JavaScript is in ES6 so it won't work in IE11.
One restriction is that api calls are proxied through my NGINX server to avoid CORS problems. Unfortunately, my server does not support HTTPS yet, so only calls through HTTP works. A simple NGINX configuration is used:
location /api { # Proxy api call to avoid CORS problems.
resolver 192.168.1.1;
proxy_pass $arg_call;
}
There is also a version made with D3 in the d3 branch.