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 rember having seen a new javascript compiler/ minifier on github which should even be better than google's closure compiler. Unluckily I cant remember its name and find it again. Maybe someone can help me? :)

Thanks, Corin

share|improve this question
1  
Uglify can only be compared with the Closure Compiler's Simple Mode. It cannot do what is possible with Closure's Advanced Mode. In my opinion, the Advanced Mode is what makes the Closure Compiler insanely great. – Stephen Chung Mar 29 '11 at 8:43
The problem with advanced mode is that you have to write your code specifically for it, it doesn't just work on your javascript. – kybernetikos Nov 7 '12 at 18:49

2 Answers

up vote 16 down vote accepted

Possibly UglifyJS? It's the minifier that the jQuery project is currently using.

Check out these speed comparisons.

share|improve this answer
yeah that's it. thanks! – gucki Mar 18 '11 at 8:43
+1 great link, thanks! – Marco Demaio Nov 11 '11 at 13:34

AFAIK Closure Compiler's ADVANCED mode is the only game in town if you want global dead code removal (aka tree shaking) and optimization. Which is why projects like emscripten and ClojureScript, and Dart javascript translator use it.

share|improve this answer

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.