Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sites like Facebook use "lazy" loading of js. When you would have to take in consideration that I have one server, with big traffic.

I'm interested - which one is better?

When I do more HTTP requests at once - slower loading of page (due to limit (2 requests at once))

When I do one HTTP request with all codes - traffic (GB) is going high, and apaches are resting little bit more. But, we'll have slower loading of page.

What's faster in result ?

share|improve this question
I think you have some misconceptions. Why do you think the page will load more slowly with a merged file? – thirtydot Jun 24 '11 at 23:21
Facecbook had 1MB file before splitting it. That's a lot if you have to give it to each user 10 000 times a day (for example 10 000 unique users, highly cached) – genesis Jun 24 '11 at 23:22
I can't imagine that this question has a right answer - it's going to depend heavily on things like how your UI is set up, whether you care more about server load or user experience, etc. Both options are good for different circumstances - we'd need much more detail to give any advice on what's better for you. – nrabinowitz Jun 24 '11 at 23:27
it's just theory, so could you please post some examples with example dependencies? – genesis Jun 24 '11 at 23:28
I was thinking more along the lines of jQuery being standalone from a CDN and let's say three separate plugins being merged into one file versus being in separate files. In that scenario, I'd expect the merged script to be faster. You're evidently talking about a much more complex situation. – thirtydot Jun 24 '11 at 23:29

3 Answers

up vote 1 down vote accepted

Less requests! Its the reason why we combine JS files, CSS files, use image sprites, etc. You see the problem of web is not that of speed or processing by server or the browser. The biggest bottleneck is latency! You should look up for Steve Souders talks.

share|improve this answer
This is not always the case. If you're talking "perceived" load time from the users perspective and you have a giant, js-heavy, web-app you shouldn't necessarily bundle everything together. It could be a meg download or more. In this situation splitting it into smaller loads is better. See my answer below. – Mauvis Ledford Jun 30 '11 at 8:06

The problem is a bit more nuanced then that.

If you put your script tags anywhere but at the bottom of the page, you are going to slow down page rendering, since the browser isn't able to much when it hits a script tag, other then download it and execute it. So if the script tag is in the header, that will happen before anything else, which leads to users sitting there stairing at a white screen until everything downloads.

The "right" way is to put everything at the bottom. That way, the page renders as assets are downloaded, and the last step is to apply behavior.

But what happens if you have a ton of javascript? (in facebooks example, about a meg) What you get is the page renders, and is completely unusable until the js comes down.

At that point, you need to look at what you have and start splitting it between vital and non vital js. That way you can take a multi-stage approach, bringing in the stuff that is nessicary for the page to function at a bare minimum level quickly, and then loading the less essential stuff afterwards, or even on demand.

Generally, you will know when you get there, at that point you need to look at more advanced techniques like script loaders. Before that, the answer is always "less http requests".

share|improve this answer

It really depends on the situation, device, audience, and internet connection.

Mobile devices for example need as little HTTP requests as possible as they are on slower connections and every round trip takes longer. You should go as far as inline (base-64) images inside of the CSS files.

Generally, I compress main platform and js libs + css into one file each which are cached on a CDN. JavaScript or CSS functionality that are only on one page I'll either inline or include in it's own file. JS functionality that isn't important right away I'll move to the bottom of the page. For all files, I set a far HTTP expires header so it's in the browser cache forever (or until I update them or it gets bumped out when the cache fills).

Additionally, to get around download limits you can have CNAMES like images.yourcdn.com and scripts.yourcdn.com so that the user can download more files in parallel. Even if you don't use a CDN you should host your static media on a separate hostname (can point to the same box) so that the user isn't sending cookies when it doesn't need to. This sounds like overfill but cookies can easily add an extra 4-8kb to every request.

In a developer environment, you should be working with all uncompressed and individual files, no need to move every plugin to one script for example - that's hard to maintain when there are updates. You should have a script to merge files before testing and deployment. This sounds like a lot of work but its something you do for one project and can reuse for all future projects.

TL;DR: It depends, but generally a mixture of both is appropriate. 'Cept for mobile, less HTTP is better.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.