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?
link|improve this question

64% accept rate
9  
Looking at the subject only, shouldn't this be migrated to english.stackexchange.com ;) ? – Tomasz Zielinski Jul 13 '11 at 15:06
Spinejs currently doesn't work on windows: stackoverflow.com/questions/8303036/hem-server-serving-nothing – Doug Dec 10 '11 at 5:56
feedback

3 Answers

up vote 206 down vote accepted

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.

link|improve this answer
3  
This is a fantastic answer, thank you. – dmackerman Sep 28 '11 at 20:52
2  
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
1  
Another difference: According to alexmaccaw.co.uk/posts/async_ui (section "ID generation"), Backbone has a separate ID space for client-generated object IDs, whereas Spine has a shared space using GUIDs. – Jo Liss Nov 17 '11 at 16:29
15  
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 at 15:44
3  
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 at 16:00
show 8 more comments
feedback

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
link|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 at 15:34
feedback

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

link|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 at 21:26
@standup75 Great comment. Please post back your experience on backbone.js. – GeorgeW Mar 21 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 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 at 3:58
feedback

Your Answer

 
or
required, but never shown

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