Beautify, unpack or deobfuscate JavaScript and HTML, make JSON/JSONP readable, etc.

Useful service to beautify web-related code before analyze/editing.

Example:
from

// This is just a sample script. Paste your real code (javascript or HTML) here.
if ('this_is'==/an_example/){of_beautifer();}else{var a=b?(c%d):e[f];}

to:

// This is just a sample script. Paste your real code (javascript or HTML) here.
if ('this_is' == /an_example/) {
    of_beautifer();
} else {
    var a = b ? (c % d) : e[f];
}

http://jsbeautifier.org

Leave a Reply

Your email address will not be published. Required fields are marked *