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.