Reputation: 942
I want to implement css and js minifier for my site.
So which one is best in terms of performance, flexibility and configuration ?
Upvotes: 1
Views: 1328
Reputation: 14135
you could implement mod_pagespeed (assuming you're using apache). It's a Google apache mod designed to do minification on not only css and js but the html that is server as well (among many other improvements). The mod will minify, combine and cache (depending on your settings) on the fly when each page is requested for the first time.
You can read more about it here
You can see a quick list of all the features it has here.
checked="checked"
to checked
)type="hidden"
to type=hidden
)Upvotes: 1
Reputation: 630
I have used google closure compiler.
And it gives me the best minification.
But i have heard it can give problems with some browsers (namely BB OS5 and lower).
YUI should give no problems, and is the second best on the market.
Upvotes: 0