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
| |||
feedback
|
|
There are a wide variety of options. In terms of actual tools, the most common are: 1) Google Closure Compiler Service 3) YuiCompressor or YuiCompressor.NET 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. 1) Combres 2) Xpedite 3) SquishIt Again, also likely many more... | |||
|
feedback
|
|
| |||
|
feedback
|
|
I use Googles JS Compiler or YUI Compressor for both. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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... | |||||||
feedback
|