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

Anyone can suggest good books about Javascript API design good practices? What are the common practices developed by Google, Twitter, Facebook in their APIs. Code organization, request control etc.

share|improve this question

closed as off topic by Robert Harvey Oct 1 '11 at 20:48

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 7 down vote accepted

You may want to check out:

Dustin Diaz, worked at Yahoo, Google and now works for Twitter. Ross Harmes, was working for Yahoo when the book was written, and apparently still is.

You may also want to check the following Google I/O talk from 2008 presented by Diaz, where he discusses some topics from this book:

I would also suggest:

John Resig is the creator of jQuery, and there is a full section in the book where he writes about reusable code, object oriented JavaScript and tools for debugging and testing, which appear to target the topics you are researching.

Last but not least, you may want to search for some articles and talks by Nicholas Zakas, from Yahoo. This is one interesting talk that I found on these topics:

share|improve this answer

I know maybe it is not the most appropriated answer to your question, nevertheless I think the book JavaScript: The Good Parts by Douglas Crockford is a must read for anyone that uses JavaScript.

share|improve this answer

The books are fine, but I also suggest the talks at Yahoo Theater. They are are very good, even if you're not going to use their YUI library. Both Crockford and Resig are there, together with Brendan Eich and others.

share|improve this answer

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