A good way to improve as a developer is to look at well-written code.

What examples of beautiful, well-architected Javascript have you encountered?

Note that I am not looking for a debate about the language itself. It has good parts and bad parts; some like it, and many hate it. Let's leave that discussion to other threads.

link|improve this question
3  
i think JQuery got pretty nice code – Denis Oct 8 '10 at 23:09
4  
Maybe you should mark it as Community Wiki as it's no actuall question, but more of a discussion! – Tseng Oct 8 '10 at 23:10
1  
@Tseng, thanks for the suggestion. I have now changed it. – Neil Whitaker Oct 8 '10 at 23:16
8  
@Denis jQuery has many advantages and pros. But, beautiful code is not one of them. – Russell Dias Oct 8 '10 at 23:35
3  
About the close vote: although this question is very similar to Some really good examples of well written javascript, most of the answers to that question are not that great and mostly point to tools and standards for improving quality rather than actual code. If anything, the other question should be closed. – Joey Adams Oct 8 '10 at 23:53
show 3 more comments
feedback

7 Answers

It depends -- personally, I've found Underscore.js' code to be very enlightening for how to structure simple toolkits. They just added an annotated version as well.

Knockout is also quite interesting, and presents a few techniques that you might not see in a more normal library like jQuery or Mootools.

Not that the code for jQuery or Mootools (or Dojo or YUI or ... you get the idea) is bad -- quite the opposite! There is an amazing amount to be learned from these libraries, and I cannot recommend enough looking up the declaration of a method that you find intriguing in any of these libraries and following the breadcrumb trail -- it's a real learning experience!

So dig in ... there's lots to see, and very little time to see it!

link|improve this answer
Underscore looks nice, but I'm finding they often favor compactness over readability. For example: .uniq = function(array, isSorted) { return _.reduce(array, function(memo, el, i) { if (0 == i || (isSorted === true ? _.last(memo) != el : !.include(memo, el))) memo[memo.length] = el; return memo; }, []); }; In this example, refactoring would also increase efficiency. – Neil Whitaker Oct 15 '10 at 17:19
@Neil -- It actually is aliased to contains ;-) documentcloud.github.com/underscore/#include – Sean Vieira Oct 15 '10 at 17:24
8  
Thanks for the heads up about the contains/include issue -- I've fixed the bug, and pushed out a new release (1.1.2). If y'all have any specific de-clever-ifications you'd like to see fixed in Underscore, I encourage you to submit them as patches on Github -- that sort of thing is warmly welcomed. – jashkenas Oct 15 '10 at 21:24
1  
@jashkenas -- you sir, are amazing! Thanks for the quick fix! – Sean Vieira Oct 15 '10 at 22:08
1  
@jashkenas -- what Sean said. – Neil Whitaker Oct 20 '10 at 17:13
show 5 more comments
feedback

The YUI Library is a great example of JavaScript, written as JavaScript by people that understand JavaScript. I guess that can't be too much of a surprise when Douglas Crockford is going to review your code.

link|improve this answer
feedback

I like changing my code to be more functional. This is a block of code I blogged about that borrows from a lot of code in many different places:

var ns = function(namespace){
    return namespace.split('.').reduce(function(holder, name){
        holder[name] = holder[name] || {};
        return holder[name];
    }, window);
};

I really like being able to do things like this. Just map and reduce are more powerful than I ever thought possible, and JS is a great language to write functionally in.

link|improve this answer
1  
Some older browsers may not implement Array.prototype.reduce, so I still rely on the underscore.js implementation for cross-browser support. It uses the native browser method if it's available. I agree with your sentiment though - these functions are often a very elegant way to solve a problem. =) – HerroRygar Mar 26 at 17:49
feedback

For beginners I suggest;

https://github.com/shichuan/javascript-patterns

A JavaScript pattern and antipattern code collection that covers function patterns, jQuery patterns, design patterns, general patterns, literals and constructor patterns, object creation patterns, code reuse patterns, DOM and browser patterns (upcoming).

link|improve this answer
feedback

Though it's an article rather than just a listing of code, I'd nominate Douglas Crockord's article about Top Down Operator Precedence Parsing in Javascript. It's no surprise given the source, but he makes excellent use of Javascript's capabilities to develop code for a very neat approach to solving a non-trivial problem.

link|improve this answer
feedback

I depends what beautiful means. For the clean and readable code I would recommend looking at what TJ Holowaychuk produces: https://github.com/visionmedia

For more hackery stuff which I also find beautiful I would recommend person like Thomas Fuchs https://github.com/madrobby and projects like https://github.com/madrobby/zepto

I find project like underscore.js http://documentcloud.github.com/underscore/ or backbone.js http://documentcloud.github.com/backbone/ somewhere between the other two.

link|improve this answer
feedback

I recommend you check out ToDoMVC -- a JavaScript todo app written in several popular JavaScript libraries/frameworks. The beauty of it is that it allows you to see the same solution implemented in several frameworks, good insight into styles and ways of doing things differently. I think so, at least.

Link: http://addyosmani.github.com/todomvc/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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