How to organize minification and packaging of css and js files to speed up website? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T05:41:50Zhttp://stackoverflow.com/feeds/question/507818http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit4How to organize minification and packaging of css and js files to speed up website?Alexander Yanovets2009-02-03T16:24:14Z2009-12-10T03:25:00Z
<p>I am doing speed optimization for my website application. And I found some practises to do that.
For example <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">Best Practices for Speeding Up Your Web Site</a> from Yahoo.
Among them are:</p>
<ul>
<li>Minify JavaScript and CSS.</li>
<li>Minimize number of HTTP Requests by combining several files (css, js) into one.</li>
</ul>
<p>My question is what infrastructure, tools and building process you use or can recommend to perform that?</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/507833#5078332Answer by Ferdinand Beyer for How to organize minification and packaging of css and js files to speed up website?Ferdinand Beyer2009-02-03T16:28:16Z2009-02-03T16:28:16Z<p>You can use <a href="http://www.julienlecomte.net/yuicompressor/" rel="nofollow">YUI Compressor</a>.</p>
<p>It can compress JavaScript as well as CSS. Just run it for all your files, then concatenate them into one 'package' file. You can either do that manually, write a Makefile or use some script to compress "just-in-time" on web request, although you might want to cache the resulting file.</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/507845#5078454Answer by Gumbo for How to organize minification and packaging of css and js files to speed up website?Gumbo2009-02-03T16:30:30Z2009-02-03T16:30:30Z<p>According to the <a href="http://compressorrater.thruhere.net/" rel="nofollow">JavaScript Compression Rater</a>, the most efficient tool is the <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUI Compressor</a> or <a href="http://crockford.com/javascript/jsmin" rel="nofollow">JSMin</a>.</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/507851#5078510Answer by annakata for How to organize minification and packaging of css and js files to speed up website?annakata2009-02-03T16:32:12Z2009-02-03T16:32:12Z<p>Big fan of Dean Edwards <a href="http://dean.edwards.name/download/" rel="nofollow">/packer/</a> myself - comes in a variety of flavours.</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/507857#5078571Answer by codemonkey for How to organize minification and packaging of css and js files to speed up website?codemonkey2009-02-03T16:34:00Z2009-02-03T16:34:00Z<p>The Yahoo tips are excellent. I use <a href="http://www.gomez.com/instant-test-pro/index.php" rel="nofollow">gomez</a> to test the results of optimization efforts. Minification is a good step. I've found bigger impacts can usually be made by adjusting the way pages are put together (particularly in reducing how much images get cut up into little pieces to reduce the number of requests). Anyway, this <a href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_8.html" rel="nofollow">yahoo blog</a> gives a pretty good rundown of minification tools. I typically stay away from obfuscation unless there's a compelling reason beyond the relatively small performance kick. The actual steps to install and use a minification tool are relatively straightforward.</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/507945#5079450Answer by Alexander Yanovets for How to organize minification and packaging of css and js files to speed up website?Alexander Yanovets2009-02-03T16:52:50Z2009-02-03T16:52:50Z<p>By following <a href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_8.html" rel="nofollow">yahoo blog</a> link I've found one real solution - "<a href="http://rakaz.nl/item/make_your_pages_load_faster_by_combining_and_compressing_javascript_and_css_files" rel="nofollow">Make your pages load faster by combining and compressing javascript and css files</a>" by Niels Leenheer.</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/508142#5081420Answer by Software Monkey for How to organize minification and packaging of css and js files to speed up website?Software Monkey2009-02-03T17:42:20Z2009-02-03T17:42:20Z<p>Or you could just configure your HTTP server to GZIP compress all text documents.</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/508726#5087261Answer by Darko Z for How to organize minification and packaging of css and js files to speed up website?Darko Z2009-02-03T20:11:54Z2009-02-03T20:11:54Z<p>I do ASP.NET, so I use CruiseControl.NET with NAnt for my build process. A part of this build process is compressing with YUICompressor which in my experience is the best compressor out there. </p>
<p>If you don't do ASP.NET, theres still the original CruiseControl with Ant that you can use in the same capacity.</p>
<p>The reason I find this a superior set up is because a) all the tedious stuff is automated and b) if you're testing on your own machine you dont have to debug a single super long string of JS :)</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/509339#5093391Answer by Julien for How to organize minification and packaging of css and js files to speed up website?Julien2009-02-03T22:58:27Z2009-02-03T22:58:27Z<p>I've integrated minification to my deployment process. I do it in perl with packages <a href="http://search.cpan.org/~pmichaux/JavaScript-Minifier-1.05/lib/JavaScript/Minifier.pm" rel="nofollow">JavaScript::Minifier</a> and <a href="http://search.cpan.org/~pmichaux/CSS-Minifier-0.01/lib/CSS/Minifier.pm" rel="nofollow">CSS::Minifier</a>.</p>
<p>During my development, I want to keep the script expanded. I put some comments in my HTML so that my script knows which files to put togetheer and minify:</p>
<pre><code><!--- MinifyJS[js/minified-1.js] -->
<script src="..."></script>
<script src="..."></script>
<!-- end[js/minified-1.js] -->
<!--- MinifyCSS[css/minified-1.css] -->
<link ...>
</code></pre>
<p>A couple of regular expression, and I quickly get a "production" version with minified files.</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/511736#5117360Answer by olemarius for How to organize minification and packaging of css and js files to speed up website?olemarius2009-02-04T15:05:54Z2009-02-04T15:05:54Z<p>For compressing everything before uploading it to web, this program is great both for CSS/JS/HTML:</p>
<p><a href="http://www.w3compiler.com/" rel="nofollow">http://www.w3compiler.com/</a></p>
<p>It's even possible to select areas not to compress, as it's not all MVC codes in your markup that supports getting compressed. </p>
<p>And it saves backup files each time it compress your files, so you can easily decompress it with just a click.</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/519939#5199390Answer by 0xE1E0 for How to organize minification and packaging of css and js files to speed up website?0xE1E02009-02-06T11:21:03Z2009-02-06T11:21:03Z<p>I've found <a href="http://code.google.com/p/minify/" rel="nofollow">Minify</a> most useful for my PHP projects. Very easy to use, just saves time configuring minimization, compression and caching of CSS and JS files manually. Also has a neat grouping feature.</p>
<p>Some notes about <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUI Compressor</a></p>
<ol>
<li>YUI Compressor generates without line breaks at all while Minify has some.</li>
<li>Be careful if you have escaped strings. I've found out that YUI Compressor unescapes them. So strings like "\'" become "'".</li>
</ol>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/1878457#18784570Answer by gatapia for How to organize minification and packaging of css and js files to speed up website?gatapia2009-12-10T03:25:00Z2009-12-10T03:25:00Z<p>I wrote my own custom manager for this. It uses google's closure compiler and compresses files only when needed in release mode. Check it out:</p>
<p><a href="http://www.picnet.com.au/blogs/Guido/post/2009/12/10/Javascript-runtime-compilation-using-AspNet-and-Googles-Closure-Compiler.aspx" rel="nofollow">http://www.picnet.com.au/blogs/Guido/post/2009/12/10/Javascript-runtime-compilation-using-AspNet-and-Googles-Closure-Compiler.aspx</a></p>
<p>Thanks </p>
<p>Guido Tapia</p>