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

link|improve this question

50% accept rate
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
feedback

2 Answers

up vote 9 down vote accepted

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

Check out these speed comparisons.

link|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
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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