Javascript Compressors
Javascript compression is used by professional web developers to compress JS, and decrease the latency of page loads. Which compression tool do you use? Do you use any that aren't on this list? I'm interested in hearing what other people are using.
Dojo ShrinkSafe: uses Rhino (Javascript engine written in Javascript) to compress without regular expressions
http://alex.dojotoolkit.org/shrinksafe/
JSMin, The Javascript Minifier
http://www.crockford.com/javascript/jsmin.html
The Javascript Compressor:
http://javascriptcompressor.com/
(another useful link, not related to compression, but a tool that is helpful in writing Javascript in addition to Firebug: JSLint -- http://www.jslint.com/)
2 comments:
I've used the Dojo one in the past, with very good success. I'd recommend that one.
It seems like that has a lot of advantages, given that Rhino is a JavaScript interpreter written in JavaScript. I can see the argument that the others utilizing RegEx's could be "brittle".
Thanks for the feedback!
Post a Comment