Came across this site the other day when looking for a javascript compressor: http://www.bananascript.com It's by far one of the best I seen, here's the stats from a file I uploaded: Original size 553240 bytes Size reduction: Percentage: 55.6% Bytes: 307457 bytes New size: 245783 bytes! I don't know how they do it, cause the code looks nothing like the original, but it works!
they use a compression via javascript. if your server supports gzip deflate/inflate, it's going to be _MUCH_ faster at the client end (done as the browser brings it in and detects the content encoding to be gzip).
1) This looks like gz or something. 2) Anything not absolutely huge: Size reduction: Percentage: 47% Bytes: 1538 bytes New size: 1734 bytes!
they use a compression via javascript.if your server supports gzip deflate/inflate, it's going to be _MUCH_ faster at the client end (done as the browser brings it in and detects the content encoding to be gzip).