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 couldn't find any proper solution for automating Google App Engine CSS and Javascript minification.

share|improve this question

4 Answers

Write a deploy script that makes a copy of your app with minified JS and CSS, and then calls appcfg on it. You shouldn't be minifying it dynamically unless you're generating it dynamically.

share|improve this answer
What's wrong in minifying on-the-fly? If you're using cached copies, I don't see what's wrong with this method. – Ron Reiter Sep 2 '11 at 6:32
1  
@Ron Your code isn't changing, so there's no reason to minify over and over again. Those users who get cache misses are going to see significant extra latency, for no real gain on your end. It also wastes resources. – Nick Johnson Sep 4 '11 at 5:14

I ended up creating this appengine script (uses memcache and slimit). I found slimit to be the best minification script all around, but I'm thinking about using the one from Google instead.

http://ronreiterdotcom.wordpress.com/2011/08/30/automatic-javascript-minification-using-slimit-on-google-app-engine/

share|improve this answer

Nick's answer is the correct way to do it, but you could do it on the fly when the JS/CSS is requested - then set cache-control to public to cache the results upstream.

share|improve this answer

You could try a build-time or a runtime solution (using maven plugin) provided by a tool called wro4j

Disclaimer: this is a project I'm working on.

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.