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

I'm a long-time developer who's getting more and more into in-browser development. (The modern tools are awesome!) I need to build some bigger, longer-running client-side interactions to go with my server-side stuff.

I am considering adopting either Knockout or Backbone to speed things along and keep things organized, but I am not sure how to go about choosing between the two.

What are the major differences between those two JavaScript frameworks that would impact when I should use one over the other?

share|improve this question
9  
Why do questions like this always get marked as 'not constructive'? With 678 votes and 364 favorites users of SO clearly find this question and it's answers useful. – cerberos May 14 at 15:06
I agree. This was helpful. I would like more info and comparison. – punkouter May 17 at 18:00

closed as not constructive by casperOne May 31 '12 at 20:43

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

12 Answers

up vote 352 down vote accepted

I have looked into both knockout.js and backbone.js and my opinion is that both are quite good.

knockout.js

pros

  1. Easy to setup. For Visual Studio 2010 you can use Nuget.
  2. The number of lines of Javascript you have to write is very small.
  3. Once you have setup the correct binding everything just works because of two way binding.

cons

  1. Data-binding is mixed with html elements.*
  2. Figuring out complex UI interaction is not straight forward.

*Some consider this to be neutral, or even a pro, because it is an easy way to reference quickly where exactly data is being bound. It is also possible to use knockout without mixing data-bind in HTML elements.

backbone.js

pros

  1. Highly flexible. You can choose not to implement some features (e.g Controller) based on your requirement.
  2. It is tightly integrated with underscore.js which is great.
  3. Initially you have to write more JavaScript code but it's very easy to implement complex user interaction.

cons

  1. Designed more towards consuming REST data.
  2. More complex initially if compared to knockout.js.
share|improve this answer
32  
For future visitors, also check out Spine maccman.github.com/spine. – Michael Mior Jul 2 '11 at 3:03
14  
To add more clarity - when reviewing the two different frameworks, I think you need to identify their intended usage and what needs they fulfill. Knockout is more suited for an MVVM pattern where and backbone is a complete mvc framework – Dan Aug 29 '11 at 19:57
28  
Re data bindings mixed with html - I also considered that a con, until I realized that putting selector to Javascript is the same concept only reversed and more confusing for designers (they don't know which elements are wired to scripts so they can't easily figure out what to not touch). If you keep your data-bindings simple, then they are nothing more than specialized CSS-like selectors. – Tomasz Zielinski Sep 5 '11 at 12:39
62  
I consider the rest thing to be a pro... – Matt Briggs Oct 7 '11 at 3:02
8  
Without making any assertations as to the quality of one vs the other: One important consideration is the network effect - how many other folks use the framework? A large community can be important, and backbone seems to outshine knockout here, sometimes by orders of magnitude. See e.g.the number of followers here at StackOverflow (backbone has twice the number) or Google trends: google.com/… or available related jobs: indeed.com/jobs?q=knockout.js vs indeed.com/jobs?q=backbone.js – Oskar Austegard Nov 8 '11 at 17:31
show 9 more comments

I have been using KnockoutJS and Backbone in my applications and would like to comment on some of the points made by others.

First and foremost, Backbone and KnockoutJS are designed with different goals in mind. So although as @thinkdevcode pointed out, the discussions can be reduced to a MVC vs MVVM comparision but from the perspective of a pragmatic programmer, choosing backbone over Knockout is NOT just a matter of choosing MVVM over MVC. There is more to it.

Although Backbone and KnockoutJS both aim to bring systematic structure to the Application, the facilities provided by them DO NOT coincide. In fact, they overlap only very sightly. KnockoutJS principally focusses on automated UI bindings and does that excellently . As @strongriley pointed out, creating data bindings in backbone requires more verbose code as the binding logic has to be written by the developer. Backbone does nothing towards automated UI synchronization and does that purposefully because it is one of the goals of the framework to stay out the actual user interface. As backbone's website says itself backbone's views are more convention than code.

I disagree with @strongriley on the point that doing something slightly abnormal the developer has to go to great lengths in case of KnockoutJS. KnockoutJS does an elegant job at data binding. Not only can the actual value stored in text nodes be mapped to JavaScript objects, practically any attribute and even individual styles can be mapped to JavaScript data structures. Combine with that the fact that mapping can be directed to dynamic objects which actually derive their data from other data structures and the excellent integration of KnockoutJS with jQuery templating system, EVERY single type of UI binding can be made in knockoutJS with lesser number of lines than backbone provided you craft your viewmodels and templates creatively.

Moreover, if you need the utmost flexibility, you can bind your own functions to view model observables which would be executed whenever that observable changes. So you have the same level of flexibility as available in Backbone.js only much more additional power. If data binding is your primary concern, KnockoutJS is definitely THE way to go.

Where Backbone excels, is integration with RESTful services. KnockoutJS models are simple JavaScript objects and any code required for updating the model is to be written by developer. On the other hands Backbone provides a Model Object which has nice functions built in to facilitate seamless integration with RESTful api.

Another key area where backbone excels, is the client side routing solution. KnockoutJS does absolutely nothing to provide client side routing, it is simply not in their feature list. But that is hardly a deterant because using a standalone routing system like Crossroads.js (http://millermedeiros.github.com/crossroads.js/) equally powerful functionality can be fabricated with minimal extra effort.

Also, the argument that KnockoutJS ties logic to the HTML markup is simply incorrect. It is the demonstrated and most simple approach. But nevertheless if you prefer to keep your logic totally separated from the markup, you can always create the data-bind attributes from JavaScript. This gist demonstrates this very clearly : https://gist.github.com/1006808

Finally, @Vin using both is definitely a BAD idea. Reason, their aesthetics are incompatible and the two approaches towards MVC are different. For instance : Backbone Models are not compatible with KO models and KO expects models to be simple objects and will not use getters and setters provided by Backbone. I would strongly recommend you to choose one and use standalone utilities to fill in the gaps for the functionality provided by other eg. there are jQuery plugins available for data binding (although none I found were equally powerful as KO). Having two separate MVC implementations on the separate page leads to very confusing code.

So my recommendation would be that if you want to get started quick and fast on a new project, go with KnockoutJS. It is simple and flexible and requires only a few minutes to get started. To explore the full power of Backbone.js an exploration worth a few hours is necessary. I am not from WPF background, people from WPF/Silverlight background might find less learning curve.

share|improve this answer
6  
why do you feel so ... i found backbone quite easy to get started with. – lorefnon Jul 16 '11 at 20:29
3  
Oh, then it seems that I "projected" my own thoughts on your answer :) – Tomasz Zielinski Jul 17 '11 at 9:32
66  
+1 - imho this is the best answer as it absolutely nails explaining the most important differences while providing a nice practical perspective - ty – Bruiser Aug 7 '11 at 20:09
11  
Haven't used it, but backbone.modelbinding provides knockout style data binding. – Dylan Aug 27 '11 at 4:02
2  
How about combining them if the overlap is so small? – michielvoo Sep 5 '11 at 17:25
show 6 more comments

@Amitabh, @thinkdevcode and @Vin have all given great answers. There are a couple of things I would keep in mind as you evaluate the two (and I recommend looking at Sproutcore and javascriptMVC to get a greater exposure to client-side framework approaches):

  • I think @Amitabh's pro/con list is a good high level view, but I don't think that having binding attributes in your markup is a "con". If you are used to dealing with views primarily through imperative code, then yes, declarative bindings are going to seem "wrong". However, due to the nature of HTML (as well as other declarative view paradigms like WPF and Silverlight), there is a huge number of developers who are used to 'hooking' their views into code via attribute style syntax. I'd argue that Knockout.js fits the mindset of most developers who've been building web apps prior to working with client side frameworks simply because its binding approach models what they've already been doing in hooking js code into DOM events, etc. (Obviously there's a great deal of subjectivity here!)
  • Knockout.js does an amazing job (IMO) with binding, but it does not provide abstractions for async communications back to the server (like Backbone.js does), nor does it provide a built in way to apply validation rules to the view models. Backbone does provide the request abstractions, but it's very prescriptive (and expects REST, which is great, but most of us are still dealing with legacy services...sad face). However, extending your KO-based application to use complementary frameworks (like amplify.js for request, storage and pub/sub abstractions) is super easy to do. Backbone seeks to be more a full MVC platform, whereas Knockout.js gives you a foundation to apply MVVM/MVP and go from there.
  • I think that even developers who've been used to a scripting-oriented approach would enjoy the MVVM approach, since it actually helps you separate your concerns (if done correctly) so that your code feels less like DOM-manipulation-spaghetti and is instead more clearly expressing your intent around your view model.

Overall I think it's definitely worth adopting these frameworks - but I highly recommend spiking small simple apps (for example, a CRUD screen) to get a feel of which works best for you, and I recommend looking at javascriptMVC and Sproutcore as well. I've spiked a simple read-only app comparing Backbone and Knockout - Part 1 and Part 2, but I also recommend checking out Ryan Niemeyer's blog (http://knockmeout.net) and Josh Bush's blog (http://digitalbush.com/2011/04/14/playing-with-knockoutjs/) for more KO examples.

Good luck!

share|improve this answer
too many acronyms! – ErichBSchulz May 5 at 1:10

I chose Backbone.js over Knockout.js for my latest development project. In addition to the comments here, the single most important difference is how Backbone.js lives outside your HTML.

This separation of concern was incredibly appealing to me and my dev team. It allows the web designer/developer to focus strictly on his HTML & CSS while functionality, REST calls, data bindings, etc can be handled entirely separately.

Example Both examples take in an input and when it changes (user blurs away), the model is updated.

The knockout Way (adapted from http://knockoutjs.com/examples/helloWorld.html)

<input id="test" type="text" data-bind="value: firstName" />

//yourscript...
var model = { 
    firstName : ko.observable("Default_Value"),
};
ko.applyBindings(model); 

The Backbone Way

<input id="test" name="firstName" type="text">

//your script...
var Model = Backbone.Model.extend();
var model = new Model();
$('input').bind("change", function(){
    var obj = {};
    obj[$(this).attr('name')] = $(this).val();
    model.set(obj);
});

Is the Backbone more verbose? Absolutely. But when you want to do something slightly abnormal, you won't be pulling out your teeth like with Knockout. Note how easy it would be to sub in any customized function into Backbone. With Knockout, you're tied tightly to their system.

Edit: Made Backbone example more generic. Thanks for pointing out, Domenic.

share|improve this answer
27  
Ewww that Backbone example is the exact opposite of separation of concerns... your JavaScript code depends on the existence of specific HTML elements, and implementation details of the DOM event system! Knockout's declarative binding lets you keep your model entirely separate from the HTML, with the only line tying them together being the convention-leveraging ko.applyBindings step. – Domenic Jun 15 '11 at 0:26
5  
Yeah that seems a lot nicer :). Of course, now you are starting to go down the path of implementing your own model-binding system. (Especially if you added the complementary code to perform the model -> view binding instead of just view -> model.) As you point out that has more customization possibilities, but I'd rather leverage a framework than do the work myself, given that you'll end up reimplementing all the edge cases that they have discovered and coded for. – Domenic Jun 16 '11 at 3:12
4  
I think you are understating Knockout's ability to have more complicated behaviour. You can use a writable dependentObservable to handle the case you describe. – Matthew Schinckel Jul 24 '11 at 10:14
11  
The problem with the Backbone example here is it is really just a jQuery example. You could have var model = {}; and then in the change handler just have model[$(this).attr('name')] = ... – Daniel Earwicker Jul 29 '11 at 6:19
2  
UPDATE to previous comment: I just found such a thing here: addyosmani.github.com/todomvc ... it compares over a dozen different JS MVC/MVVM frameworks, with (you guessed it) a TODO application as the code example for each. – iconoclast Apr 4 '12 at 15:10
show 4 more comments

This question basically boils down to MVC vs MVVM, in which case there is no "correct" answer. It depends on the project, your coding style, and your overall understanding of the design pattern.

Overall, I would highly recommend any framework for large scale web applications - regardless of pattern. As another alternative, there is Javascript MVC

share|improve this answer
Thanks! So there's nothing else worth looking at, then? – William Pietri Feb 25 '11 at 2:19
Like I said - it depends. If your looking at large frameworks you could also look into Cappucino and SproutCore. I have experience with Knockout and I love it, but it's not for everything. – thinkdevcode Feb 25 '11 at 2:27
1  
I am a big fan of jmvc, and am using it on several projects. – Nathan Feger Feb 25 '11 at 2:59

Sproutcore is gaining popularity. It is an application framework (not a framework of widgets) that follows MVC strictly and has some nifty binding/observing functionality that makes updating views when loading data as seamless as possible. If you are coming from a server-side background, you might feel comfortable because it really does feel like a cohesive framework.

Amber is a lightweight version of Sproutcore that will be available soon.

Both are options that are worth considering. I also agree with thinkdevcode -- there is no right wrong answer, as long as whatever you choose helps your productivity and meets your needs...

share|improve this answer
Isn't sencha a library similar to jQuery? It doesn't provide a framework for your application that follows a popular design pattern (like the question asked) only widgets and an easy way to parse the DOM – thinkdevcode Feb 25 '11 at 2:30
@thinkdevcode that is right, its is more a framework of widgets than an application framework, but that is changing with sencha 4. ill update the answer – hvgotcodes Feb 25 '11 at 2:34
@thinkdevcode, just deleted that part... – hvgotcodes Feb 25 '11 at 2:41
really, a downvote with no explanation for a pure opinion type question, where there are no real right/wrong answers? – hvgotcodes Feb 25 '11 at 3:03
10  
+1 to negate undeserving downvote – peteorpeter Feb 25 '11 at 3:17
show 3 more comments

If you are UI/Markup focused, and care about Silverlight/WPF like data-binding, then KnockoutJS is for you.

If you prefer scripting oriented approaches with MVC, go for Backbone.js

There's no saying you can't use both. Currently I am evaluating such an approach, especially for taking care of UI to Server syncing with Backbone's sync mechanism.

End of the day, We need to use the right tool for the right job. Although they do have a little bit of overlap, they target slightly different areas.

Good luck.

share|improve this answer
2  
On Slashdot I'd rate this post "Insightful." :) – Jim Raden Mar 25 '11 at 17:11
1  
@JimRaden: On Slashdot, I'd rate your comment "Funny". :) – Brian M. Hunt Mar 28 '12 at 16:00
I want to give a -1 for using the over-used "use the right tool for the right job" quote. lol But I didn't. – cbmeeks Apr 23 '12 at 15:00
I would say some phrases are so true that they can never be over-used. Guess this is one of them. :) – Vin Apr 24 '12 at 18:07

I noted that nobody has mentioned Knockback.js yet, which I feel is an oversight. Knockback provides an elegant (IMHO) combination of both backbone.js and knockout.js. In essence it uses Models from Backbone.js, and Views/ViewModels from Knockout.js.

Knockback.js, which uses both Backbone.js and Knockout.js, is an alternative to choosing between using only one of Backbone.js or Knockout.js.

Even if one does not use Knockback.js, I think understanding how Knockback.js works and why it came into existence highlights the deficiencies of those frameworks.

share|improve this answer
it would be nice if someone points out a sample code with knockback.js ? :) – Joy Jul 31 '12 at 4:16

I would say that Knockout was much better for me than backbone, two way communication, Automatic binding among dom and script in memory objects, for router they have ko address JS , for mapping they have DAMN good Map js. For routing u can mixup crossroads.js (only 3kb) and you enjoy lots of benefits.

I started using backbone but knockout really knocked it out since, i dont think the model and controller thing had anything for me. It was like some base functions and nothing else.

I can tell that easy thing is not always a solution. If you can give 2-3 days on knockout and learn it, it worth much more than a basic lib.

About knockout being written inside DOM ...... it was fixed here https://gist.github.com/1006808 that you can do that by script too.

So all issues fixed?

Go do knockout.

share|improve this answer

Interesting discussion: http://news.ycombinator.com/item?id=1810665

share|improve this answer
Very helpful. Thanks! – William Pietri Feb 25 '11 at 18:21

Sproutcore and Cappuccino are for building desktop-like applications, that is with an Apple-esque UI etc... They are powerful, heavy and have a steep learning curve.

If you have an app with a significant volume of javascript code dealing with a significant volume of data, yes backbone.js is very, very helpful. It is betwwen knockout and JSMVC in terms of features and learning curve. It probably is the more popular option at the moment.

share|improve this answer
2  
I've also heard many complaints about the quality of the documentation for Sproutcore. That should however improve now that Yehuda Katz is working on it full-time. My recommendation is go with Backbone.js. It is a think of beauty. Jeremy writes the cleanest looking javascript code I've read to date. – Andrew De Andrade Feb 25 '11 at 16:25

I personally prefer Backbone, I discuss about the topic in my blog: http://a-developer-life.blogspot.com/2011/04/backbonejs-vs-knockoutjs.html I think both are good, you can probably have a look also at Sammy.js...I am personally going to do that :)

share|improve this answer

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