For those of you that did not saw, there is a particular question on Quora that gave a lot of information about resources on backbone.
Official Backbone.js Resources
- Official Site – http://documentcloud.gith
ub.com/… - Backbone.js on GitHub – https://github.com/docume
ntcloud… - Annotated source code – http://documentcloud.gith
ub.com/… - underscore.js – http://documentcloud.gith
ub.com/… (Backbone.js hard dependency)
Startups/Apps Built on Backbone.js
- DocumentCloud – http://www.documentcloud.
org/ & http://www.documentcloud.org/pub… - Tzigla – http://tzigla.com/
- Basecamp Mobile – http://basecamphq.com/mob
ile - QuietWrite – http://www.quietwrite.com
/ - Midgard2 User Interface – http://bergie.iki.fi/blog
/introd… - InstaGre.at – http://InstaGre.at/
- HeroScale – https://www.heroscale.com
/ - HelpShelf – http://HelpShelf.com/
- Diaspora X^2 – http://diaspora-x.com/
- Menagerie Whiteboard – http://menagerievet.com/
- TileMill – http://mapbox.github.com/
tilemill/ - Substance IO – http://substance.io/
- Archivematica – http://archivematica.org/
- Spoondate – http://spoondate.com/
- Grooveshark – http://grooveshark.com
Example Apps
- Todo App – http://documentcloud.gith
ub.com/… http://documentcloud.github.com/… - CloudEdit – http://cloudedit.jamesyu.
org/ https://github.com/jamesyu/Cloud… - Backbone Mobile Example by Ben Nolan – http://bennolan.com/2010/
11/24/b… - Backbone, Express, Mongoose and SocketIO – https://github.com/datapi
mp/back… - Brunch Colors – http://brunch-colors.com/
#!home
OpenSource/Github Projects
- Ligament – Relational associations for Backbone – https://github.com/dbrady
/ligame… - Vienna IKS Editables – http://wiki.iks-project.e
u/index… - Ben Nolan’s Capt – http://bennolan.com/2010/
12/13/c… http://bennolan.com/2010/12/13/c… - Small Backbone ORM – https://github.com/juggy/
backbon… - Brunch with Coffee – http://brunchwithcoffee.c
om/ - Cinco – 37Signals framework based on Backbone.js. Should be open-sourced by April/May
Blog Posts & Tutorials
- Creating LocalTodos – A Short Story – http://jgn.heroku.com/201
0/10/25… - CloudEdit – A Backbone Tutorial with Rails (Part 1) http://www.jamesyu.org/20
11/01/2… - CloudEdit – A Backbone Tutorial with Rails (Part 2) http://www.jamesyu.org/20
11/02/0… - Testing Backbone Apps with Jasmine and Sinon – http://tinnedfruit.com/20
11/03/0… - Reusing Backbone.js Models on the server with Node.js and Socket.io to Build Real-time Apps – http://andyet.net/blog/ta
g/backb… - How to Share Backbone.js models with Node.js – http://amir.unoc.net/how-
to-shar… - Introducing the Backbone Store – http://www.elfsternberg.c
om/2010… - Backbone.js demo app with Sinatra backend – http://ryandotsmith.herok
u.com/2… - LiquidMedia – An Intro to Backbone.js – Part 1 – Models and Collections – http://liquidmedia.ca/blo
g/2011/… - LiquidMedia – An Intro to Backbone.js – Part 2 – Controllers and Views – http://liquidmedia.ca/blo
g/2011/… - LiquidMedia – An Intro to Backbone.js – Part 3 – Binding a Collection to a View – http://liquidmedia.ca/blo
g/2011/… - Backbone-CouchDB – Give your CouchApp some Backbone – http://janmonschke.poster
ous.com… - One of These Days Blog – Backbone.js – http://www.oneofthesedays
blog.co… - Backbone.js and Django – http://joshbohde.com/2010
/11/25/… - The Meta Cloud – Backbone.js Tutorial – http://www.plexical.com/b
log/201… - Moved to Backbone.js and JQuery Templates – http://www.akshay.cc/2010
/10/mov… - Building a Single-Page App with Backbone.js, Underscore.js and JQuery – http://andyet.net/blog/20
10/oct/… - eCloudEdit – Erlang, WebMachine and Backbone.js – http://blog.erlware.org/2
011/02/… http://blog.erlware.org/2011/02/… - Thomas Davis – Restful Ajax Web App Basics – http://thomasdavis.github
.com/tu…

Thanks for mentioning my tutorial, The Backbone Store. I wasn't happy with some of the decisions I made in that tutorial, so I've updated it. First, I have a standard version:
The Backbone Store 2.0 http://www.elfsternberg.com/2011/08/08/backbone-s…
And an "advanced" version:
The Backbone Store 2.0 made with Coffeescript, HAML, and Stylus: http://www.elfsternberg.com/2011/08/22/backbone-s…
They're both written and designed the same way. The biggest mistake in the original was tracking views by attaching them to models; I now consider that a serious programming error, and in 2.0 fix that error, making views independent of models.