According to O'Reilly's High Performance Web Sites (pages 15-16), it's highly recommended to make as few HTTP requests as is possible for high-performance. Thus, is there a library for combining multiple JS files into one file, and a library to do this for CSS as well?
For JavaScript, I have at least 4 different libraries being loaded right now, jQuery 1.6.x, a few jQuery plugins, and one application JavaScript file for application logic. I also have 2 CSS files, Bootstrap and my application's CSS file.
Are there tools to facilitate this? It'd be nice to have a tool I could use from Python or from Bash (I'm on Linux) to "compile" and minify the multiple CSS stylesheets.
(If this is possible as a Django addon, even better [ie manage.py packify static/bootstrap.min.css static/application.css ...])