Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a JavaScript JSON pretty print library (with colors, indentation, etc.)?

share|improve this question

7 Answers

up vote 265 down vote accepted
+50

With native JSON, there's no need to use a library, since pretty-printing is implemented natively.

var obj = {a:1, 'b':'foo', c:[false,null, {d:{e:1.3e5}}]};
var str = JSON.stringify(obj, undefined, 2); // indentation level = 2

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:

function syntaxHighlight(json) {
    if (typeof json != 'string') {
         json = JSON.stringify(json, undefined, 2);
    }
    json = json.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
    return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
        var cls = 'number';
        if (/^"/.test(match)) {
            if (/:$/.test(match)) {
                cls = 'key';
            } else {
                cls = 'string';
            }
        } else if (/true|false/.test(match)) {
            cls = 'boolean';
        } else if (/null/.test(match)) {
            cls = 'null';
        }
        return '<span class="' + cls + '">' + match + '</span>';
    });
}

See in in action (jsfiddle)

share|improve this answer
That is awesome, why is this not the answer o.O – Drew Sep 16 '11 at 21:34
18  
Somebody award Pumbaa80 some internets, please. – Adam Backstrom Nov 9 '11 at 3:13
Brilliant, elegant! – mVChr Nov 11 '11 at 21:48
I would only add that instead of setting classes and having to add a CSS file, I instead create a style attribute and set it in the JS code. Makes the function really standalone. But all in all this is absolutely awesome. – Hazerider Apr 10 '12 at 13:07
Have to thank you for this. Beautiful. :) – Christian Nunciato Jul 6 '12 at 0:52
show 6 more comments

I use the JSONView Chrome extension (it is as pretty as it gets :):

Edit: added jsonreport.js

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.

share|improve this answer
I needed a Javascript *.js library that could pretty print a JSON string adding html elements and classes. Something like var result = prettyPrint('{"key":"value"}'); – Mark Jan 30 '11 at 19:23

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?

share|improve this answer

For debugging purpose I use:

console.debug("%o", data);
share|improve this answer

Pretty Diff uses a heavily modified form of js-beautify. Try it out and see if it does all that you need:

http://prettydiff.com/

share|improve this answer

Print Pretty (www.pretty-print.org) on the other hand uses highlight.js to do it.

share|improve this answer

If you use net.sf.json, you can pretty print as follows (using a 4 space indentation):

JSONObject work = JSONObject.fromObject("{\"hi\":\"there\",\"more\":\"stuff\"}");
log.info("WORK="+work.toString(4));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.