vote up 5 vote down star
1

Between Yahoo! UI Compressor, Dean Edwards Packer and jsmin, which produces better results, both in terms of resulting footprint and fewer errors when obfuscating.

flag

6 Answers

vote up 1 vote down check

Better is a bit subjective here, since there are multiple factors to consider (even beyond those you list):

  1. Compressed size doesn't tell the whole story, since an aggressive compressor can result in slower run-time performance due to the additional time needed to run unpacking code prior to browser interpretation.
  2. Errors are easiest to avoid when you control the input code - judicious use of semicolons goes a long way. Run JSLint over your code, and fix any problems reported.
  3. The style and size of the code itself will affect the results, of course.
  4. And finally, it's worth keeping in mind that server-side gzip compression will always result in a smaller download than any code compression, although some code compression tools will combine with gzip more effectively.

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.

link|flag
It's generally a good idea to time performance and see the effect, but in the case of JSMin, Dojo ShrinkSafe, and the YUI Compressor they only decrease file size (replace symbols, remove dead code) - they don't modify the behavior. Dean Edward's packer does increase processing time. – orip Dec 12 '08 at 0:03
vote up 0 vote down

There's also a port of the YUICompress for .NET (which includes a build task for TFS) on Codeplex.

link|flag
vote up 1 vote down

Definitely check out Dojo Shrinksafe. It was reworked recently and apparently the performance has been improved.

link|flag
vote up 4 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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