Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (17 loc) · 1.05 KB

README.md

File metadata and controls

24 lines (17 loc) · 1.05 KB

Jaysee

Yet another JSON visualizer. Made with Vue.js and Google Material Design Lite.

Jaysee - MDL version

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.