Project: https://www.npmjs.com/package/falcor
Overview Video: https://www.youtube.com/watch?v=hOE6nVVr14c

Technical notes, and other ideas.
Project: https://www.npmjs.com/package/falcor
Overview Video: https://www.youtube.com/watch?v=hOE6nVVr14c
http://stedolan.github.io/jq/
sudo apt-get install jq
Key all of the values from a json file
jq '.[]' en.json
Get all of the keys from a json file
jq 'keys[]' en.json
Get all of the keys, comma separated
jq 'keys' en.json
In Ubuntu, open preferences, browse packages, to get location of packages folder, and open a terminal and change into that folder
$ git clone https://github.com/dzhibas/SublimePrettyJson.git
Ubuntu: /username/.config/sublime-text-2/Packages
The use [Ctrl]+[Alt]+[j] to run the prettify command
or in iOS us [Ctrl]+[Cmd]+[j]
Refer: https://github.com/dzhibas/SublimePrettyJson
Easier way to format JSON instead of JSONLINT
With Python 2.6+ you can just do:
echo '{"foo": "lorem", "bar": "ipsum"}' | python -mjson.tool
Ubuntu has a jsonlint that can format json stand-alone, and it looks like there might be other ports
Usage with jsonlint:
$ jsonlint -f temp.txt > temp-format.txt
Usage with jq:
$ jq '.' < en.json