Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to organize minification and packaging of css and js files to speed up website?

I am doing speed optimization for my website application. And I found some practises to do that. For example Best Practices for Speeding Up Your Web Site from Yahoo. Among them are:

  • Minify JavaScript and CSS.
  • Minimize number of HTTP Requests by combining several files (css, js) into one.

My question is what infrastructure, tools and building process you use or can recommend to perform that?

like image 795
Oleksandr Yanovets Avatar asked Feb 03 '09 16:02

Oleksandr Yanovets


1 Answers

According to the JavaScript Compression Rater, the most efficient tool is the YUI Compressor or JSMin.

like image 162
Gumbo Avatar answered Sep 21 '22 08:09

Gumbo