3

Is there any JSON editor/visualizer out here? I really want to analyze my JSON with a cool editor!

Comments
  • 0
    @norman70688 Yes! But something not online would be even cooler.
  • 0
    @norman70688 The other utilities are also pretty useful!
  • 0
    @reticentroot I like that one too!
  • 0
    Now that I think about it, can you open json files I'm the browser? If you can you could use JSONView, I don't think that you need to be online and it's pretty useful to pretty print Json data in the browser.
  • 3
    Just open it in a code editor like VS Code, Atom, Sublime?
  • 0
    @heyheni I don't have any of these... Do they visualize JSON well? Right now the only editor I have that do this is Notpad++ and it's pretty crappy.
  • 1
    @DevotedSniper, I usually use this, and then copy & paste the results on Sublime.
  • 0
    @Gianlu get it for free at http://code.visualstudio.com
  • 1
    If you just want to prettify it then you can pipe it into python's json.tool module

    $ cat sample.json | python -m json.tool
  • 0
    @heyheni would you recommend it to replace Notepad++?
  • 1
    @Gianlu that's up to you :)
    (yes)
Add Comment