What is the the best JavaScript compressor available? I'm looking for a tool that:
- is easy to use
- has a high compression rate
- Produce reliable end results (doesn't mess up the code)
|
What is the the best JavaScript compressor available? I'm looking for a tool that:
|
|||||||||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Google released Closure Compiler which seems to be generating the smallest files so far as seen here and here Previous to that the various options were as follow Basically Packer does a better job at initial compression , but if you are going to gzip the files before sending on the wire (which you should be doing) YUI Compressor gets the smallest final size. The tests were done on jQuery code btw.
@daniel james mentions in the comment compressorrater which shows Packer leading the chart in best compression, so I guess ymmv |
|||||||||||||||||
|
|
I recently released UglifyJS, a JavaScript compressor which is written in JavaScript (runs on the NodeJS Node.js platform, but it can be easily modified to run on any JavaScript engine, since it doesn't need any Other than whitespace removal, UglifyJS also does the following:
PS: Oh, it can "beautify" as well. ;-) |
||||
|
YUI Compressor is the way to go. It has a great compression rate, is well tested and is in use among many top sites, and, well, personally recommended by me. I've used it for my projects without a single JavaScript error or hiccup. And it has nice documentation.
Note: Although Dean Edwards's /packer/ achieves a better compression rate than YUI Compressor, I ran into a few JavaScript errors when using it. |
|||||||||||
|
|
I use ShrinkSafe from the Dojo project - it is exceptional because it actually uses a JavaScript interpreter (Rhino) to deal with finding symbols in the code and understanding their scope, etc. which helps to ensure that the code will work when it comes out the other end, as opposed to a lot of compression tools which use regex to do the same (which is not as reliable). I actually have an MSBuild task in a Web Deployment Project in my current Visual Studio solution that runs a script which in turn runs all of the solution's JS files through ShrinkSafe before we deploy and it works quite well. EDIT: By the way, "best" is open to debate, since the criteria for "best" will vary depending on the needs of the project. Personally, I think ShrinkSafe is a good balance; for some people that think smallest size == best, it will be insufficient. EDIT: It is worth noting that the YUI compressor also uses Rhino. |
||||
|
|
|
Try JSMin, got C#, Java, C and other ports and readily available too. |
|||
|
|
|
If you use Packer, just go far the 'shrink variables' option and gzip the resulting code. The base62 option is only for if your server cannot send gzipped files. Packer with 'shrink vars' achieves better compression the YUI, but can introduce bugs if you've skipped a semicolon somewhere. base62 is basically a poor man's gzip, which is why gzipping base62-ed code gives you bigger files than gzipping shrink-var-ed code. |
|||
|
|
|
|||
|
|
|
Here's the source code of an HttpHandler which does that, maybe it'll help you |
|||
|
|
|
Here is a YUI compressor script (Byuic) that finds all the js and css down a path and compresses /(optionally) obfuscates them. Nice to integrate into a build process. |
|||
|
|
|
bananascript.com used to give me best results. |
|||
|
|
|
KJScompress http://opensource.seznam.cz/KJScompress/index.html
|
|||
|
|
|
I use jscompressor.com as a chrome app. |
|||
|
|
|
I always use obfuscriptor.com, a free web application that provides the best compression results that I have ever seen so far. And their obfuscated code looks cool! :-) |
|||
|
|