Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which javascript minification library produces better results? [closed]

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

like image 518
lsdr Avatar asked Dec 11 '08 20:12

lsdr


2 Answers

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.

EDIT: since the original time this question was asked, 2 new minifiers have been released. They're both usually at least as good as, if not better than, the YUI Compressor.

  • Google's Closure Compiler. Includes an aggressive advanced optimization mode that's sometimes applicable.
  • Microsoft's Ajax Minifier (search this page for "minifier")

EDIT 2:

  • UglifyJS, chosen by the jQuery team for the official 1.5 release
like image 83
orip Avatar answered Nov 15 '22 05:11

orip


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.
    • 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.
    • The style and size of the code itself will affect the results, of course.
    • 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.

like image 3
Shog9 Avatar answered Nov 15 '22 06:11

Shog9