Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Earliest viewer for viewing .json files?

While almost all text-editors can view .json files, I am sure there are some or one which show .json files in all its glory. Could somebody share name or names of native .json viewers rather than text-editors which can also show .json files. I am looking to know about the earliest tools which are/were used to view .json files. Looking to see raw .json output rather than pretty output.
by

1 Answer

vishaljlf39
jq is a json processor (like sed for json) which can also be used to pretty-print json documents.
cat yourfile.json | jq

Login / Signup to Answer the Question.