Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

5 Answers

up vote 44 down vote accepted

There are a wide variety of options. In terms of actual tools, the most common are:

  1. Google Closure Compiler Service
  2. Microsoft AJAX Minifier
  3. Yahoo's CSS Minifier (also 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...

share|improve this answer

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.

share|improve this answer

I use Googles JS Compiler or YUI Compressor for both.

share|improve this answer

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...

share|improve this answer
i understand what you are saying, i never felt the need to use obfuscation either. I thought of it now, because i am going to sell a fairly simple facebook service and i don't want my clients to easily redistribute the code. – André Alçada Padez Jan 30 '11 at 17:08
1  
@André: what's stopping your clients from distributing the obfuscated file? I'm not saying obfuscation is of no use here (it might or might not work), just curious how it's supposed to work... – Christoph Jan 30 '11 at 17:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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