Nowadays, we have tons of Javascript libraries per page in addition to the Javascript files we write ourselves. How do you manage them all? How do you minify them in an organized way?
|
5
|
|
|
|
|
|
My answer to a similar question. |
||
|
|
|
|
Cal Henderson (of Flickr fame) wrote Serving JavaScript Fast a while back. It covers asset delivery, not organization, but it might answer some of your questions. Here are the bullet points:
I'll add a few bullet points of my own:
|
||
|
|
|
|
This might be a different approach than what you're looking for, but I've been playing around with the idea of JavaScript templates in our blog engine. In a nutshell, you assign a Javascript template to a page id using the database and it will dynamically include and minify all the JavaScript files associated with that template and create a file in a server-side cache with the template id as a file name. When a page is loaded, it calls the template file which first checks if the file exists in the cache and loads it if it does. If it doesn't exist, it creates it on the fly and includes it. I also use the template file to gzip the conglomerate JavaScript file. The template idea would work well for site-wide JavaScript (like a JavaScript library), but it doesn't cover page-specific JavaScript. However, you can still use the same approach for page specific JavaScript by including a second file that does the same as above. |
||
|
|
|
|
In my last project, we had three kinds of JS files, all of them inside a JS folder.
The biggest effort was in having most of the code on the first two kinds, having custom code only know what to call, and when. |
||
|
|
|
|
Organization All of my scripts are maintained in a directory structure that I follow whenever I work on a site. The directory structure normally goes something like this:
If, on the off chance, that I'm working on a team uses an inordinate amount of scripts, then I'll normally create a custom directory in which we'll organize scripts by relationship. This doesn't happen terribly often, though. Compression Though there are a lot of different compressors and obfuscators out there, I always come back to YUI Compressor. Inclusion Unless a site is using some form of a master page, CMS, or something that dictates what can be included on a page beyond my control, I only included the scripts necessarily for the given page just for the small performance sake. If a page doesn't require any script, there will be no script inclusions on that page. |
||
|
|
|
|
I'v been using this lately: http://code.google.com/apis/ajaxlibs/ And then have a "jscripts" folder where I keep my custom code. |
||
|
|
|
|
I will have a folder for all javascript, and a sub folder of that for 3rd party/shared libraries, and sub folders for each component of the site to keep everything organized. For example:
Then run everything through a minifier/obfuscator during the build process. |
||
|
|
|
|
First of all, YUI Compressor. Keeping them organized is up to you, but most groups that I've seen have just come up with a convention that makes sense for their application. It's generally optimal to package up your files in such a way that you have a small handful of packages which can be included on any given page for optimal caching. You also might consider dividing your javascript up into segments that are easy to share across the team. |
|||
|
