Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Most efficient javascript/AJAX toolkit?

What is the most efficient Javascript/AJAX toolkit?

like image 897
mars-o Avatar asked Jan 07 '09 12:01

mars-o


1 Answers

jQuery seems pretty popular at the moment, and is lightweight.

  • http://jquery.com/

Their API is well constructed and designed, and the resulting code tends to be very concise.

Some may find it TOO concise - matter of taste. On larger projects I sometimes end up using YUI - it's a lot more heavyweight, but for a large codebase I find it easier to read something a little more explicit.

  • http://developer.yahoo.com/yui/

Really, it's a bit of a subjective question; most efficient will depend on what makes the most sense to your coding style, what you're trying to do, and what you're interacting with.

Best of luck!

like image 51
Chris Burgess Avatar answered Nov 15 '22 21:11

Chris Burgess