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

There seem to be two very similar JS frameworks. Backbone and Spine. Apparently Spine is inspired by Backbone but quite different.

I've no experience with either of them.

  • What are the pros/cons of them and how do they compare?
  • If you would start a project now, which framework would you prefer and why?
share|improve this question
22  
Looking at the subject only, shouldn't this be migrated to english.stackexchange.com ;) ? – Tomasz Zielinski Jul 13 '11 at 15:06
1  
Spinejs currently doesn't work on windows: stackoverflow.com/questions/8303036/hem-server-serving-nothing – Doug Dec 10 '11 at 5:56

4 Answers

up vote 324 down vote accepted

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.

share|improve this answer
4  
This is a fantastic answer, thank you. – dmackerman Sep 28 '11 at 20:52
4  
Another thing to keep in mind is that unfortunately SpineJS is not as lightweight as it is talked about. Minified version of it is ~27kb. For comparison Backbone is 4.6 kb, Underscore.js is < 4kb, jQuery - 31kb. – Dmytrii Nagirniak Nov 7 '11 at 23:49
31  
I'm not sure why the focus on a few bytes of static js (perhaps because it's a metric we can actually measure, although nearly meaningless in this case.). Use what makes sense to you, has the quickest learning curve, has the necessary features you need, but no more, is as simple as possible, has the best documentation, and has a large enough community to support the product for the near future. Combine this with other things like productivity and fun, and you've got yourself a useful tool. – Derek Litz Jan 7 '12 at 15:44
4  
Also, this is a bit dated and should be updated... I'm just starting the tutorials with Spine and this is missing many things I'd mention in an answer to this question already. Of course, before I'd answer something like this I'd have to be competent with both tools so I can give valid concerns. This answer is very high level and doesn't really get into many real world issues IMHO (still a fairly good high level overview though), but nothing that wouldn't be better served looking at the two home pages and intro documentation for both projects. – Derek Litz Jan 7 '12 at 16:00
3  
@DerekLitz, when you get 100 hits or less per day to your site, then you are OK with disregarding the difference in file size and consider it meaningless. When you are developing an application that will get millions of hits per day then those 20k difference start to weight in your decision. If size was not that important we would not have compressed versions of different libraries. Just an observation. – Helmut Granda Feb 8 '12 at 23:33
show 10 more comments

I've been playing with Backbone for a while. But there are a few things about Spine that make me consider learning Spine instead:

  • written in CoffeeScript
  • nice mobile framework
  • model relationships are built in (not exactly, but at least by the same author)
  • whole thing looks much nicer (it's a big deal for me -- I think if somebody cares enough to make a beautiful website, they also care to write beautiful code)
  • Spine's documentation indeed is awesome

Problems I have with Spine

  • what they call controllers seem to be responsible for rendering (you set things like el or tag on a controller, that doesn't really make sense)
    • say you want to reuse your views, create something called FormView and then just reuse it. I don't know how would I do this.
  • model persistence with local storage is very basic, it simply takes whole collection and stores it as JSON
share|improve this answer
2  
@Vojito - "say you want to reuse your views, create something called FormView and then just reuse it. I don't know how would I do this" - This "statement" is very vague and poor example of an actual problem. It actually seems like a question. Setting up el and or tag is setting up references to the view, which in Spine is simply some html. In the contacts examples these html views are simply templates. Hence why Spine has no "View" class, it just uses html. This makes sense to me and is simple... in fact it's pointed out in another answer backbone views are like controllers. – Derek Litz Jan 7 '12 at 15:34

Been dabbling with spine for a day or 2. It looks great. I definitely got a wow moment when you start to understand how things are working together. I chose is it in the first place because I love coffeescript and I though it was the right way to go.

I am now thinking about changing gears and try backbone.js out. Main reasons are that I like to use the js debugger to understand what's going on (using firebug or the inspector) and it's not so easy to read into the spine generated javascript source code. The other reason is that backbone is just more popular and so, if you have a question, the likelihood of finding the answer on the net is far greater. Try to look for ways to do the pagination for example

share|improve this answer
there is a spine usergroup where the author himself answers from time to time. also, I troll stackoverflow for the spinejs tag :p – SpoBo Mar 18 '12 at 21:26
@standup75 Great comment. Please post back your experience on backbone.js. – GeorgeW Mar 21 '12 at 23:17
js debugger +1. Although the generated javascript source code is still readable, but it might be a little bit more difficult – larryzhao Apr 13 '12 at 17:10
I did the opposite and moved from Backbone.js to Spine. Spine suited my MVC pattern better, and I found Backbone's views that are actually controllers, and models which are actually just objects that are collections ideas to slow me down. – djlumley May 2 '12 at 3:58
@djlumley only if you use them in that way – rickyduck Sep 11 '12 at 10:34
show 1 more comment

backbone was the firs kid on the block. way more users, code and documentation around. we stick though with spine since if you once get the concept its so well structured. … we love spine.js. maccman keep the good work up. checkout styloapp amazing how far maccman pushed it. https://github.com/maccman/stylo

share|improve this answer

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.