Update: It's been a little over a year since I wrote this answer and it's had a lot of great comments. While most of the line items are still pretty valid, a fantastic blog post was written by Hjörtur Hilmarsson on this topic that goes into much better detail.
While both Backbone and Spine are still alive and kicking today with constant updates and enhancements, Backbone's changes deal more with subtle refinement while Spine's changes have been more revolutionary with it's complete move to Coffeescript.
It's nice to see that while Spine has always been hugely influenced by Backbone (Alex MacCaw pretty much made his version of Jeremy Ashkenas's Backbone after he saw it), it has really blossomed into it's own thing including it's own command-line dependency manager and mobile addon. Additionally some of of Alex's opinions like "optmistic" model saving in Spine has influenced Backbone and made it into it's core. Lastly, Alex came out with a book this year for O'Reilly called "JavaScript Web Applications" where he delves deep into building these kind of web frameworks and dissects both Backbone and Spine. Highly worth reading.
In the end, my conclusion is still the same which is echoed in Hjörtur's conclusion:
...I recommend when the key thing is simplicity or CoffeeScript integration choose Spine. In most other cases I recommend using Backbone with Underscore as the tool for the job.
I did a bunch of research on this lately and it was indeed hard to find any comparisons. Here's some quick differences:
- Backbone has concepts of Models, Views (which also act a bit like controllers), and Collections (groups of Models).
- Spine has concepts of Models and Controllers.
- Both additionally have HTML-only concepts of Routes which are uses for detecting / controlling document URL hashes. (I say HTML-only because both can be used outside of the web, in backend languages like Nodejs).
- Spine's core is way smaller (though both frameworks are relatively lightweight).
- Backbone requires underscore.js and though it's not required, recommends either jQuery or Zepto for some extra functionality.
- Spine also recommends either jQuery or Zepto for some extra functionality.
- Spine abstracts away prototypal inheritance a little more regarding "super".
- Spine has localStorage support natively. In Backbone there's a plugin the creator made to support the "ToDo List" example that's bundled.
I ended up going with Backbone for the following reasons
- Spine sounds awesome in it's lack of framework dependencies but the first things most people are going to do in their project is to drop in jQuery or Zepto for the DOM utils and easy chaining, defeating this "achievement". Additionally the Spine main-page is a little deceptive in that if you want to use Spine's routing or ajax, it requires jQuery or Zepto.
- Underscore.js, Backbone's other dependency, is a pretty cool library that offers a few non-DOM-related methods that jQuery/Zepto doesn't do including one ridiculously awesome templating ability. At 3kb minified and gzipped, it's worth having in your toolbox.
- Spine has no built-in templating ability so relies on you bringing your own. Even the example that comes with Spine uses a jQuery templating plugin.
- Besides templating, the biggest difference I noticed was that Spine did away with the concept of Collections. I don't know what took it's place but I find collections to be very important in my day-to-day Backboning. I set up a model. I set up a collection that uses the model. I never deal with the model again, querying, aggregating info about all stored models, and creating new models via the collection.
- Less important but still notable, Backbone has a larger set of companies and projects using it. That instills trust for me.
Bottom line, both systems take a little while to wrap your head around but I'm sure could equally work well when mastered. I started with Backbone for the reasons above and planned to move to Spine if I felt uncomfortable with Backbone. I did indeed feel uncomfortable with Backbone for about 2-days but afterwards everything just "clicked" and now I feel productive and empowered. I update the user model and the user's view (html) automatically updates. Life is good.
*I'll probably be updating this more later as I think of more things and look more closely at the Spine doc. I do enjoy how it has a list of some "typical Spine patterns". Backbone's documentation while beautiful, is less helpful in the "100 foot view" perspective. I wish both libraries came with more than one example app.
Good luck.