Between Yahoo! UI Compressor, Dean Edwards Packer and jsmin, which produces better results, both in terms of resulting footprint and fewer errors when obfuscating.
|
1
|
|
|
|
|
|
Better is a bit subjective here, since there are multiple factors to consider (even beyond those you list):
My recommendation is to run the code you intend to compress through several compressors (an automated comparison tool such as CompressorRater helps...), and choose based on the results - remembering to test, profile and compare the actual page load times afterward. |
||
|
|
|
There's also a port of the YUICompress for .NET (which includes a build task for TFS) on Codeplex. |
||
|
|
|
|
Definitely check out Dojo Shrinksafe. It was reworked recently and apparently the performance has been improved. |
||
|
|
|
|
A great way to compare the best compressors is The JavaScript CompressorRater by Arthur Blake. What you're usually interested in is the size after compressing with GZIP (you should configure your web server to perform the compression). The best results are usually from the YUI Compressor or Dojo ShrinkSafe. The differences were so small that after a while I stopped comparing and I just use the YUI Compressor. |
||
|
|
|
|
YUI Compressor compresses more safely and compactly than Packer does. I believe Packer needs the JavaScript to be perfectly formed otherwise it will cause a JavaScript error when the script is loaded. Still, regardless of which you use, you'll get the biggest performance increase by Gzipping your file. |
||
|
|
|
|
As a Mootools user, I notice that Mootools has replaced Dean Edwards' Packer by YUI Compressor. I also remember there was a discussion on Ajaxian.com where Julien (Compressor author) pointed out the areas where YUI Compressor did better. I used Compressor and have never seen any problem, but I have never studied to which produces fewer error when obfuscating. |
||
|
|
