vote up 38 vote down star
42

There are a few Javascript frameworks/toolets out there, such as:

It certainly seems that jQuery is ascendant in terms of mindshare at the moment. For example, Microsoft (ASP.NET MVC) and Nokia will use it. I also found this this performance comparison of Dojo, jQuery, MooTools and Prototype (Edit: Updated Comparison), which looks highly favourable to Dojo and jQuery.

Now my previous experience with Javascript has been the old school HTML + Javascript most of us have done and RIA frameworks like Google Web Toolkit ("GWT") and Ext-GWT, which were a fairly low-stress entry into the Ajax world for someone from a Java background, such as myself.

But, after all this, I find myself leaning towards the more PHP + Ajax type solution, which just seems that much more lightweight.

So I've been looking into jQuery and I really like it's use of commands, the use of fluent interfaces and method chaining, it's cross-browser CSS selector superset, the fact that it's lightweight and extensible, the brevity of the syntax, unobtrusive Javascript and the plug-in framework. Now obviously many of these aren't unique to jQuery but on the basis that some things are greater than their sum of parts, it just seems that it all fits together and works well.

So jQuery seems to have a lot going for it and it looks to the frontrunner for what I choose to concentrate on. Is there anything else I should be aware of or any particular reasons not to choose it or to choose something else?

EDIT: Just wanted to add this trend comparison of Javascript frameworks.

flag

trend comparison of Javascript frameworks??? This link compares Coldfuxion and ASP.NET - those aren't JavaScript frameworks. Are you sure you wanted to add that exact link? – Rene Saarsoo Feb 7 at 9:01
Oops, wrong link. Fixed. – cletus Feb 7 at 9:09
The comparison link you had was comparing "jquery" to literally "+dojo", "+yui", etc. The + was not necessary and was skewing the results. I fixed this. – Paolo Bergantino Mar 29 at 14:01

15 Answers

vote up 67 vote down check

Jquery

  • Fast
  • Well documented
  • Easy to use
  • Chaining
  • Unlike prototype it doesn't extend an object if you didn't specifically ask for it (try looping an array in prototype)
  • easy-to-use AJAX (I love the $.ajaxSetup() function)
  • Nice Event handlers
  • CSS selectors
  • filtering your selection
  • did I mention chaining?
  • Small (only 30kb)
  • Nice little build-in effects.
  • Plugins
link|flag
17  
We use jQuery here on StackOverflow - and if you run into a tricky problem, its creator might help out! stackoverflow.com/users/6524/john-resig – Jarrod Dixon Feb 7 at 9:00
1  
jQuery all the way. Fast. Lightweight. Easy. Powerful. It has it all. – Jeff Davis May 14 at 20:45
2  
+29! Now that's fanboyism! – alamar May 17 at 19:02
3  
+1 just for their documentation alone. I wish it had more UI control (there is a Calendar, Tab Control, dialog, etc), but nothing like what YUI has. But YUI doesn't do all the things that JQuery does either -- and there are plenty of plugins. – Chris Brandsma May 17 at 19:11
8  
It is a masterstroke to use CSS selectors. This means that if you already know CSS, you have a good headstart. If you don't know CSS and start using jQuery, you automatically learn CSS. Not to mention that CSS selectors make code very concise. – SolutionYogi Jul 1 at 21:18
show 2 more comments
vote up 0 vote down

How about some love for ExtJS?

link|flag
vote up 0 vote down

Has anyone used SproutCore?

Right now it seems that they might still be too young (e.g. underdeveloped widget/plugin libraries, lacking documentation) to seriously compete with the big players, but I've never used them. It looks like a MVC framework with some potential.

Seems they got a nice visual style (Apple used them), though I wonder how easy it is to skin/brand. (One of the worst things about Ext is how you can easily identify any Ext app in about half a second).

Any thoughts?

link|flag
vote up 3 vote down

With the exception of Dojo/YUI most of these are libraries, not frameworks. Frameworks involve a little more (architecture + development tools).

JavaScriptMVC (http://javascriptmvc.com) is a great choice for organizing and developing a large scale JS application.

The architecture design very well thought out. There are 4 things you will ever do with JavaScript:

  1. Respond to an event
  2. Request Data / Manipulate Services (Ajax)
  3. Add domain specific information to the ajax response.
  4. Update the DOM

JMVC splits these into the Model, View, Controller pattern.

First, and probably the most important advantage, is the Controller. Controllers use event delegation, so instead of attaching events, you simply create rules for your page. They also use the name of the Controller to limit the scope of what the controller works on. This makes your code deterministic, meaning if you see an event happen in a '#todos' element you know there has to be a todos controller.

$.Controller.extend('TodosController',{
   'click' : function(el, ev){ ... },
   '.delete mouseover': function(el, ev){ ...}
   '.drag draginit' : function(el, ev, drag){ ...}
})

Next comes the model. JMVC provides a powerful Class and basic model that lets you quickly organize Ajax functionality (#2) and wrap the data with domain specific functionality (#3). When complete, you can use models from your controller like:

Todo.findAll({after: new Date()}, myCallbackFunction);

Finally, once your todos come back, you have to display them (#4). This is where you use JMVC's view.

'.show click' : function(el, ev){ 
   Todo.findAll({after: new Date()}, this.callback('list'));
},
list : function(todos){
   $('#todos').html( this.view(todos));
}

In 'views/todos/list.ejs'

<% for(var i =0; i < this.length; i++){ %>
   <label><%= this[i].description %></label>
<%}%>

JMVC provides a lot more than architecture. It helps you in ever part of the development cycle with:

  • Code generators
  • Integrated Browser, Selenium, and Rhino Testing
  • Documentation
  • Script compression
  • Error reporting
link|flag
vote up 1 vote down

I like jQuery simply because it's well documented! There's an excellent jQuery book: "Learning jQuery1.3" Chaffler/Swedberg.

link|flag
vote up 0 vote down

JQuery + SmartClient

I believe SmartClient officially supports comingling with JQuery on the same page. (http://forums.smartclient.com/showthread.php?t=3578&highlight=jquery)

So use JQuery for basic stuff, and insert heavy-hitting application-like widgets via SmartClient.

link|flag
vote up 0 vote down

I have recently started using GQuery (jQuery port for GWT) and it seems to be the best thing that happened to me after Krispy Kreme doughnuts :)

I am a java developer so there is a bias for this framework. The other reason why I recommend it is for the performance. Check out the GQuery vs jQuery performance comparison at http://letusdemo.appspot.com/ I uploaded a demo by Ray Cromwell.

link|flag
GQuery is cool. But that performance comparison is old. jQuery 1.2.3! I'd love to see an update. Also, does GQuery keep up with changes that get made to jQuery? – Nosredna Jul 1 at 21:14
I will work on the weekend to update the demo to do a comp with the current jQuery build. Its still build 1.0 and is being worked on by just 2 ppl so I really dont know how the update process is going to be. But if it gives any comfort the 1.0 was released on May 29th. I think it ported jQuery as of then. – Drunken Programmer Jul 3 at 0:30
vote up 4 vote down

Have to add into consideration.

Prototype's API documentation rocks. http://prototypejs.org/api

Jquery's one sucks, frankly. I mean, just compare those! http://docs.jquery.com/Main_Page

Also, Script.aculo.us is a known value. I can't say it's technically the best, since all frameworks have something comparable, but who the hell cares about "technically the best"? You don't. I don't, either.

link|flag
3  
I do not agree, I like jQuery's documentation very much. I find it very clear, especially the examples and the way it is split up in what you wan't to do with it (instead of in the different Objects as prototype's). – Pim Jager Jun 24 at 18:31
agree 100% see api.jquery.com – adardesign Sep 1 at 15:48
vote up 8 vote down

One thing is nobody seems to have mentioned that you can use more then one library, the MochiKit library in particular, since in terms of name spacing I think it is very well designed. I guess the MochiKit library isn't very popular it is a shame because I think it is hands down the most well designed as a JavaScript library. http://mochikit.com/

I prefer the YUI of all the things mentioned though because not only is it a well designed JavaScript library that doesn't interfere with your code because everything is in YAHOO or wrapped in an anonymous function, but also it has a very clear focus to the library and it fits in with the philosophy of MVC.

link|flag
vote up 2 vote down

I use YUI because I think it is complete in functionality.

The YUI 3.0 will be very like jQuery in its strengthness.

link|flag
vote up 1 vote down

If you are doing anything really javascript-heavy, like a single-page site i would say dojo, because of it's great architecture, templates, widget-system and built in widgets for pretty much everything. Otherwise, if you need more lightweight style, i would say jQuery :)

link|flag
vote up 2 vote down

I think you might find JQuery is rapidly catching up on the plug-ins front.

link|flag
vote up 34 vote down

Being a Dojo developer I would recommend Dojo. While my choice is not surprising, I became a Dojo developer because I found following things, which are done better than in other JavaScript frameworks:

  • OOP (and other paradigms) done right.
  • Widget infrastructure done right.
  • Modules done right with all necessary goodies:
    • Lazy loading of modules dynamically.
    • Possibility to extract only necessary modules and build a custom one-file profile.
    • Asynchronous loading of modules if desired.
    • Simple integration with CDNs for heavy-duty web applications.
  • Sheer breadth of available modules in DojoX including graphics, charting, grids, and so on.
  • Ability to use it in non-browser environments.
  • Attention to details in widgets:
    • support for i18n (including LTR and RTL languages),
    • support for l10n (including standard date, currency, number formatting),
    • provisions for people with special needs (automatic high-contrast mode, keyboard-only support, and so on) — useful for regular users too, and mandatory for most government contracts.
  • Smart people in the community (last but not least) — as much as I love hand-holding for novices at some point every developer becomes "seasoned" and needs much more than that.

If all you want is to write one-liners and add simple progressive enhancements to existing web applications, you can do it with pretty much any framework, or even with a pure JavaScript. But as soon as your web application becomes bigger or more complex good packaging, good support for your favorite methodologies, good building blocks, and the ability to make your own building blocks become more and more important. That's why I settled on Dojo, and never looked back.

link|flag
7  
Dojo is an excellent base for building your own code. jQuery is okay for doing some "standard" things, but when you need very customized UI widgets or other magic, Dojo's functionality is much easier to extend. It also seems a lot of Dojo's codebase is much higher quality than some components in other libraries. – Jani Hartikainen Jul 1 at 21:25
2  
Right on the money. For us, developers, Dojo is above all the programmer's framework. We are striving to provide a solid foundation for custom development, and we work hard on improving Dojo's code as much as we can. I hope it shows. – Eugene Lazutkin Jul 3 at 1:09
3  
The problem with Dojo is the documentation. It's not unified (dojotoolkit, dojocampus, sitepen), dojotookit.org is painfully slow, the forum is deprecated at the moment, and personally, I've had poor luck on the irc channel.... – sprugman Jul 31 at 17:08
1  
Working with different toolkits I found that Dojo's docs are not that bad. For example, I have to dive in jQuery's source code on daily basis. Official docs are on dojocampus.org --- no need to go elsewhere. IRC is always about catching right people online. ;-) Sitepen doesn't provide Dojo docs, but it has good articles on Dojo, and you can find more if you google around. The forum was deprecated for a reason --- there is very much alive dojo-interest@mail.dojotoolkit.org mailing list. If you prefer a web interface, use Nabble or Gmane to read/write. Try it. – Eugene Lazutkin Jul 31 at 23:37
3  
I recently subscribed to the mailing list, and I have to agree (despite my statement above), that it seems to be a vibrant and helpful community. – sprugman Aug 3 at 21:19
show 1 more comment
vote up 11 vote down
  • YUI for a complete, professional looking, enterprise oriented widget toolkit.
  • Prototype if you are using http://script.aculo.us/ or like the Ruby way of doing things.
  • jQuery has gotten very popular and is most probably your best bet if you code in ASP.NET
  • You can't go wrong with either Dojo or MooTools
link|flag
You can easily switch JQuery into Prototype if you are using Rails – Toby Hede Dec 27 '08 at 7:58
I would personally switch the other way around (prototype to jQuery) – Pim Jager Dec 27 '08 at 9:31
YUI is worth a try if you're looking for something different (I believe LinkedIn use it). – Ross Mar 29 at 13:03
What do you mean by 'enterprise oriented'? – SolutionYogi Jul 1 at 21:18
1  
Widgets that are enterprise friendly. You know, more about tree views, calendar controls, data grids, and charts than about animating sprites. Since my original post, Yahoo has been enhancing their YUI to be more consumer friendly too. There is now a file uploader, image cropper, and an image carousel widget that are all currently in beta. – Glenn Jul 5 at 22:24
show 2 more comments
vote up 2 vote down

I'm using YUI for a few of their controls (DataTable, Paginator, TabView, Autocomplete, etc.) since they work out of the box with very little coding. But for most everything else I rely on jQuery for it's simplicity.

I'm hoping in the future jQuery will have an equivalent set of controls so I can stick to a single framework.

link|flag

Your Answer

Get an OpenID
or

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