I'm looking for a good and reliable JS and CSS minimizer. Preferably one that refactors my javascript variables to something more obscure and something it's easy to use.
Which ones do you use?
Thanks
|
I'm looking for a good and reliable JS and CSS minimizer. Preferably one that refactors my javascript variables to something more obscure and something it's easy to use. Which ones do you use? Thanks |
|||
|
|
There are a wide variety of options. In terms of actual tools, the most common are:
and likely many more, but I have used each of these tools, and all are great to work with. If you are working with a .NET application library, there are also various other options that extend these base tools, to combine like resources and reduce overall HTTP requests. Again, also likely many more... |
||||
|
|
|
I like to use Google's Closure Compiler (http://closure-compiler.appspot.com/home) for minification (best of class) followed by a code obfuscator (http://www.daftlogic.com/projects-online-javascript-obfuscator.htm) for source protection. |
|||
|
|
|
I use Googles JS Compiler or YUI Compressor for both. |
|||
|
|
|
I don't bother with minizers at all. Instead, I statically generate a gzipped version of all text files and let content-negotiation and caching handle the rest. Also, Javascript-obfuscation is mostly pointless - I can think of few valid reasons to do so... |
|||||||
|