7 Free Tools to Minify your Scripts and CSS
devcurry.com
7 Free Tools to Minify your Scripts and CSS
1–10 of 11 posts
Re: 7 Free Tools to Minify your Scripts and CSS
#2For the Django dudes in here:
http://github.com/miracle2k/django-assets with which you can use your compressor of choice
Re: 7 Free Tools to Minify your Scripts and CSS
#3For Dojo as mentioned on the post comment
Re: 7 Free Tools to Minify your Scripts and CSS
#4And they've missed the Google Closure Optimizer for JavaScript:
http://code.google.com/closure/
Re: 7 Free Tools to Minify your Scripts and CSS
#5If anyone uses Kohana I maintain a packaged which wraps the PHP cssmin and jsmin libraries (plus some Kohana juice for serving files/caching)
There is also a port (or rewrite) for Kohana V3 that someone else maintains http://github.com/zazu/minify
Re: 7 Free Tools to Minify your Scripts and CSS
#6I'm not sure why YUI Compressor is last on that list, and why it's not mentioned that it also minifies CSS.
Re: 7 Free Tools to Minify your Scripts and CSS
#7Two months ago I hooked up jsmin from a build script for release configurations. It's been helpful to have all of the reader-friendly stuff stripped out automatically without having to store minified copies in source control.
Re: 7 Free Tools to Minify your Scripts and CSS
#8I'm not sure why YUI Compressor is last on that list, and why it's not mentioned that it also minifies CSS.
Last could be a position of honor. And he mentions that it produces higher compression ratios.
Re: 7 Free Tools to Minify your Scripts and CSS
#9Two months ago I hooked up jsmin from a build script for release configurations. It's been helpful to have all of the reader-friendly stuff stripped out automatically without having to store minified copies in source control.
That's obviously a best practice. Minified code is essentially object code.
Re: 7 Free Tools to Minify your Scripts and CSS
#10I wrote a couple of articles a while ago about minifying css/javascript on the fly. They utilise a mod_perl handler which intercepts outgoing css/js and compresses them on the way out.
https://secure.grepular.com/Compressing_CSS_on_the_Fly
https://secure.grepular.com/Compressing_JavaScript_on_the_Fl...