Is there a JavaScript JSON pretty print library (with colors, indentation, etc.)?
|
With native JSON, there's no need to use a library, since pretty-printing is implemented natively.
See the MDN Docs for further details (e.g. on the second argument); If you need syntax highlighting, you might use some regex magic like so:
|
|||||||||||||
|
|
I use the JSONView Chrome extension (it is as pretty as it gets :): Edit: added I've also released an online stand-alone JSON pretty print viewer, jsonreport.js, that provides a human readable HTML5 report you can use to view any JSON data. You can read more about the format in New JavaScript HTML5 Report Format. |
||||
|
|
Douglas Crockford's JSON in JavaScript library will pretty print JSON via the stringify method. You may also find the answers to this older question useful: How to pretty-print JSON script? |
||||
|
|
|
For debugging purpose I use:
console.debug("%o", data);
|
|||
|
|
|
Pretty Diff uses a heavily modified form of js-beautify. Try it out and see if it does all that you need: |
|||
|
|
|
Print Pretty (www.pretty-print.org) on the other hand uses highlight.js to do it. |
|||
|
|
|
If you use net.sf.json, you can pretty print as follows (using a 4 space indentation):
|
|||
|
|