aez-notes
Table of Contents
CLI
jq is a command line tool for working with JSON. It can be installed using your package manager.
Pretty printing
To pretty print the contents of demo.json
to the file pretty-demo.json
use
the following:
cat demo.json | jq . > pretty-demo.json
Packages
Language | Package |
---|---|
Emacs Lisp | json |
Haskell | aeson |
R | jsonlite |
Emacs Lisp
See the JSON section of emacs notes for notes on working with JSON in Emacs Lisp.
Haskell
See the JSON section of haskell notes for notes on working with JSON in Haskell.
R
See the JSON section of R notes for notes on working with JSON in R.