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

I have recently found annotated source code for underscore.js and backbone.js

I'm currently going through these reading them to learn how other authors structure and write javascript code. It's a good learning experience.

Can anyone recommend other high quality annotated source code that is worthwhile to read so that I can gain a better understanding of javascript and associated techniques.

Having finished reading underscore.js I would recommend the reading of their OOP wrapper

share|improve this question
@Gio borje the question was for people to recommend "good" code. Not just "any" code. I think code that has comments is not a good measure for "good code" – Raynos Jan 30 '11 at 0:47
1  
btw, the documentation generator used in github is jashkenas.github.com/docco – corbacho May 21 '11 at 23:11

8 Answers

up vote 12 down vote accepted

It's not quite "annotated code," but DailyJS has a huge series of articles called Let's Make a Framework.

share|improve this answer
1  
+1 I've been meaning to read those. – Raynos Jan 30 '11 at 0:53
agreed, it's a great series... I don't agree with everything, but it is quite nice. – Tracker1 Jan 30 '11 at 10:08

You might be interested in jQuery Deconstructed, Prototype Deconstructed, and/or MooTools Deconstructed.

share|improve this answer
Sweet! That's really neatly done. – Raynos Feb 8 '11 at 5:17
Thanks! Glad you liked 'em. – Matt V. Feb 8 '11 at 6:42

John Resig's Learning Advanced JavaScript interactive tutorial taught me more JavaScript than a year as a web developer did.

It's quick, interactive, and iterative. You learn in small bites, and it'll help you dig into jQuery and other libraries at a deeper level.

share|improve this answer
You beat me to this answer :) Another tip, is searching John Resig's site, there's some 'slideshows' and other goodies in there too. google.co.za/search?q=site%3Aejohn.org – jamiebarrow Feb 4 '11 at 15:44
That's not source code that's javascript techniques. I'm looking for seeing well written javascript in action. I'm also looking for high level design of javascript source code. – Raynos Feb 5 '11 at 1:22
1  
It's annotated JavaScript, certainly in action. It's easy to run, edit, and see exactly what happens. John progressively brings you to a final bit of JavaScript and teaches you a lot on the way. If you want to understand some of the more advanced libraries out there, especially jQuery, it's quite indispensable. – Dawson Toth Feb 6 '11 at 9:24
don't get me wrong. Its defiantly useful and it's great to learn from. It's just not something I was looking for. – Raynos Feb 6 '11 at 16:32
Oh, alright. Understood! I figured as much, but I want to expose other people to it as well. – Dawson Toth Feb 7 '11 at 23:09

I don't know how old this question is but I found something that might be of interest to you. http://robflaherty.github.com/jquery-annotated-source/ This is a link to a github repo that has the annotated source for jQuery like the backbone.js and underscore.js libs. Check it out, it's pretty cool.

share|improve this answer

The non-minified version of jQuery is rather well commented and well formatted.

http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js

share|improve this answer
Thanks, I still aught to sit down and read $.ajax module. have yet to get around to understanding how native ajax works. – Raynos Jan 30 '11 at 1:17
@Raynos generally they all use the XmlHttpRequest object, if there's a native one, or fallback to IE's XML ActiveX control for older IE versions. There's some incompatabilities, and the jQuery one pretty much stabilizes the API a bit, it isn't the leanest code, but is pretty nice. You may want to sniff around into the jQuery Validation plugin for insane... I wrote a nice wrapper around it for my own use at usairways, though won't see the light of day for months. – Tracker1 Jan 30 '11 at 10:12
@Tracker1 I've used that read it a bit. I'll take a better look at that. – Raynos Jan 30 '11 at 14:16
These two links may also be beneficial if you start perusing the jQuery source: paulirish.com/2010/10-things-i-learned-from-the-jquery-source and paulirish.com/2011/… – MPD Feb 5 '11 at 12:50
Already seen those, but yes they are good. – Raynos Feb 7 '11 at 17:42

has.js is pretty good for feature detection...

https://github.com/phiggins42/has.js

share|improve this answer
That was interesting. It's also quite small which makes it a nice read. – Raynos Jan 30 '11 at 14:30

A few examples of annotated libraries here and here

share|improve this answer
I've got to say. That's some ugly code. It goes againts quite a few best practices I know and it defiantly shows sign of taking patterns from other languages that don't apply to javascript. – Raynos Feb 7 '11 at 17:41

This is definitely not source code, but I recommend you take a look at the articles listed in here, written by Douglas Crockford (father of the JSON data interchange and many useful JavaScript techniques) They helped me a lot in learning how to use Javascript in the 'good way'.

http://javascript.crockford.com/

share|improve this answer
I'm not looking for generic advice I've already read. I'm looking to learn more about specific implementation. Macro structure of libraries and learning to read and understand other people source code by getting used to common patterns. Don't get me wrong, as a learning resource it's great but it's something I've already covered and wasn't looking for. – Raynos Feb 7 '11 at 17:39

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.