views:

377

answers:

2

Google hosts popular ajax libraries for free at :

http://code.google.com/apis/ajaxlibs/

You get to take advantage of their bandwidth, their CDN and most importantly that users may already have it cached from another site that is retrieving their JS files from google.

Was just wondering if the same is true for Microsoft AJAX anywhere? Or is there somewhere on Microsoft's site I could 'steal' the hosting from.

Also is there any benefit of me hosting it myself on a CDN like Amazon A3. I believe I wont solve the number of simultaneous downloads issue because internet explorer will block while a script is downloading.

A: 

You are asking a couple of questions here.

Firstly as far as I know Yahoo and Google are the only companies that offer free CDN hosting for JavaScript libraries.

Secondly, the thing that will hurt your page performance is excessive DNS lookups. It's about balancing the cost of a DNS lookup vs. the difference in speed of a CDN compared to your local server. Normally the difference between the CDN and your server is enough that it's definitely worth getting your common library from the CDN.

In an ideal world you should use as few hostnames as possible. You should be aiming for 1 HTML page from your server, 1 Javascript from CDN and 1 CSS from CDN. If you can't afford your own CDN access then 1 HTML page from your server, 1 Javascript Library from CDN, 1 Javascript file from your server. 1 CSS library from CDN and 1 CSS file from your server is fine. That's still only 2 hosts. The performance guidelines say 2-4 is your ideal.

In terms of using S3 as a budget CDN you should compare the speed of getting a file from S3 and your own host to evaluate if that is worth while. It's extremely important that any CDN you use only has 1 hostname. So if S3 redirects requests to S3.1.amazon.com and S3.2.amazon of whatever it wouldn't make a good solution.

I hope that helps.

sh1mmer
good point. if we're already using S3 for images (which we will be) then we may as well stick ajax on there too. i assume they support gzip
Simon_Weaver
Dojo is available on AOL's CDN - http://dev.aol.com/dojo
Kevin Hakanson
+5  A: 

Microsoft launched today the Microsoft AJAX CDN that will provide Microsoft AJAX and jQuery libraries.

Julien Jacobs
Hooraay! ScriptManager will get one more strange property! :)
Arnis L.