vote up 1 vote down star
1

Hi,

I like Google Web Tookit API approach. It use Java language behind the scenes that compiles ONLY JavaScript code WHOSE TARGET BROWSER NEEDS. It happens some developers would like to use that feature in pure JavaScript language.

Anwser: WHAT COULD WE SUGGEST in order to fullfill this requirement ?

I suggest to use JavaScript comments (as a flag) as a way some compiler (like Yahoo JavaScript compiler) analises our app JavaScript code and generates only a JavaScript Framework code needed.

Example: a hypothetical JavaScript framework (JQuery, Mootools, Prototype ect) code

// depends function say
funcion sayHello() {
    // some code   
}

function say() {
   // some code
}

// more and more no needed Javascript framework functions in our app

So when my app use a function sayHello, only that sayHello function and its dependencies would be filtered through JavaScript comments, nothing else. So, this way our application would be lighter, by using only JavaScript Framework code needed.

And you: what do you suggest ?

flag

65% accept rate
This post is unintelligible. – Michael Aaron Safyan Jul 20 at 1:47
2  
@Michael: I think it's quite readable. Not every users of SO is native English speaker (such as myself), but I can get the essence of what he's trying to say just fine :). – Jimmy Chandra Jul 20 at 1:51
2  
This post has been compiled with only the necessary words. ;) On a more serious note, I get what the author is going for. But: compiling Javascript files as-needed sounds like more trouble than it's worth, and it subverts browser caching. A simple modular approach seems sufficient to me. Hence this is a no-answer. – deceze Jul 20 at 1:55
1  
Premature optimization is the root of all evil. Considering Google and Yahoo will host the Javascript libraries for you, and users probably have those cached... is this really a problem that is worth spending your time on? – jrockway Jul 20 at 2:15
1  
Browsers don't always use the cache, even when they could. For example, if the user opens a new window (via the File menu, or with Ctrl-N) in IE 6 (and possibly later versions) it will always retrieve everything anew, completely bypassing the cache. Developers shouldn't expect the browser cache to alleviate them of their responsibility to minimise the amount of data they send over the wire, for caches are unreliable at best. – NickFitz Jul 20 at 2:39
show 2 more comments

7 Answers

vote up 0 vote down

A nice article about it is found here:

The New Yahoo! Front Page

regards,

link|flag
vote up 0 vote down

I don't know about other frameworks, but with Dojo Toolkit you can take advantage of caching better by using a public CDN copy of the source in your site, from AOL or Google.

link|flag
vote up 2 vote down

I would suggest learning to program in JavaScript and understanding the various peculiarities of the different DOM implementations, then writing just the code necessary for your application. If you really don't want to have to deal with re-creating all the event handling shenanigans and so on, then nick the relevant techniques from the libraries. You'll learn a lot more about what you're doing that way, as you'll need to actually understand how it all works to be able to integrate those techniques with your application.

Having worked professionally with JavaScript since 1996 I, like many, was initially tempted by the apparent ease of use offered by libraries; but if I see one more answer on here that says "use jQuery" (followed by some code that isn't even optimal in jQuery) when the correct answer is to use an existing and well-documented feature of JavaScript that works on every single implementation since Netscape Navigator 3, I'll scream ;-)

link|flag
vote up 5 vote down

There's one case where it would make sense to me--a jQuery for iPhone. It doesn't make any sense for all the non-Safari baggage in jQuery to be in there slowing things down.

For the typical desktop, though, if you get a JS library from the Google APIs, it's likely already cached and ready to go.

link|flag
Not sure why this got voted down. There are actually alternatives to jQuery for the iPhone because of the excess baggage. And it's been discussed on the jQuery discussion boards. The iPhone is a slower machine than a PC. See XUI. – Nosredna Jul 20 at 2:25
1  
Also, IIRC the iPhone browser can only cache ~ 25 kB of data. – wrumsby Jul 20 at 3:07
+1 for mentioning getting your libraries through Google API – Gab Royer Jul 20 at 3:25
vote up 1 vote down

I don't think it would be worth it to add the complexity of selected inclusion. jQuery is 57k and loads very fast. Your energy is much better spent worrying about other things that might actually matter.

link|flag
You are right, pbreitenbach. But you can not forget that as a new JavaScript version is launched (and new features), more code is needed. – Arthur Ronald F D Garcia Jul 20 at 2:00
vote up 0 vote down

If you are making your own framework from scratch, just make different script files for each feature and modularize development. You will know exactly what features are where, so you only need to include the features you need.

As to libraries already created, its just easier to include the whole thing than for users to have to know exactly what features are in what part of the script. The library really doesn't have tons of overhead with getting included and getting "compiled." You would need to do evaluation to firgure out what was getting used and what was not. If you did all this before you deployed the page it would be fine. You would do this separately with each page ,which you might need to do, since each page would use different features. But don't try to use more js to try to figure out what features are used, because that would have to be transmitted and just defeat the purpose.

link|flag
vote up 8 vote down

If the JavaScript code of the framework is served as a cacheable file then the download cost of requesting the entire framework (e.g. jQuery.js) can be eliminated, but if you were generating the framework code on the fly (as you suggest above) then it's going to be harder to take advantage of caching.

On top of this the memory cost of defining the entire framework is probably unlikely to be problematic (assuming the framework is written sensibly).

So, pulling in the entire framework, as is the common case, is simple, works well and doesn't require a particular server-side infrastructure (like GWT does).

link|flag
Agree, dynamic recompilation will not be good here, but you can do this as pre-deployment activity and have the final output be a compiled .js file which will pull all the necessary script parts – Jimmy Chandra Jul 20 at 1:55
3  
cache is king, just like in life – scunliffe Jul 20 at 1:57

Your Answer

Get an OpenID
or

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