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 working off the List of Google Pagespeed's guidelines for speeding up pageload times. One of them is minifying CSS and JS files.

Since these files change quite often I was thinking of using a PHP script that minifies this script on-the-fly upon request (from the browser).

Or do you think this is a bad idea? After all, it would result in static resources having to be passed through a php script before delivering them.

share|improve this question
Have you looked at mod_pagespeed at all? Even if you don't use it, your idea is similar to a subset of its design (it goes far above and beyond). – ephemient Feb 25 '11 at 6:50

1 Answer

up vote 4 down vote accepted

On-the-fly minification scripts are fairly advanced and use caching to ensure that scripts aren't minified on every single call.

You can use something like http://code.google.com/p/minify/

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.