I tried to understand the usability of backbone.js from its site http://documentcloud.github.com/backbone/. However I still couldn't directly figured out much.

Can anybody help me how it works and how could it be helpful in writing better Javascript.

link|improve this question

1  
It's a MVC framework. It encourages you to abstract your data into models and your DOM manipulation into views and bind the two together using events. – Raynos Mar 24 '11 at 11:38
feedback

7 Answers

up vote 25 down vote accepted

Backbone.js is basically an uber-light framework that allows you to structure your Javascript code in an MVC(Model, View, Controller) fashion where...

Model is part of your code that retrieves and populates the data,

View is the HTML representation of this model(views change as models change, etc)

and Controller that in this case allows you to save the state of your javascript application via a hashbang url, for example: http://twitter.com/#search?q=backbone.js

Some pros that I discovered with Backbone:

  • No more Javascript Spaghetti: code is organized and broken down into semantically meaningful .js files which are later combined using JAMMIT

  • No more jQuery.data(bla, bla): no need to store data in DOM, store data in models instead

  • event binding just works

  • extremely useful underscore utility library

  • backbone.js code is well documented and a great read. opened my eyes to a number of JS code techniques.

Cons:

  • Took me a while to wrap my head around it and figure out how to apply it to my code, but im a Javascript Newb.

Here is a set of great tutorials on using Backbone with Rails as the back-end:

CloudEdit: A Backbone.js Tutorial with Rails:

http://www.jamesyu.org/2011/01/27/cloudedit-a-backbone-js-tutorial-by-example/

http://www.jamesyu.org/2011/02/09/backbone.js-tutorial-with-rails-part-2/

p.s. There is also this wonderfull Collection class that lets you deal with collections of models and mimic nested models, but i dont want to confuse you from the start.

link|improve this answer
feedback

If you're going to build complex user interfaces in the browser then you will probably find yourself eventually inventing most of the pieces that make up frameworks like Backbone.js and Sammy.js. So the question is, are you building something complicated enough in the browser to merit using it (so you don't end up inventing the same thing yourself).

If what you plan to build is something where the UI regularly changes how it displays but does not go to the server to get entire new pages then you probably need something like Backbone.js or Sammy.js. The cardinal example of something like that is Google's GMail. If you've ever used it you'll notice that it downloads one big chunk of HTML, CSS, and JavaScript when you first log in and then after that everything happens in the background. It can move between reading an email and processing the inbox and searching and back through all of them again without ever asking for a whole new page to be rendered.

It's that kind of app that these frameworks excel at making easier to develop. Without them you'll either end up glomming together a diverse set of individual libraries to get parts of the functionality (for example, jQuery BBQ for history management, Events.js for events, etc.) or you'll end up building everything yourself and having to maintain and test everything yourself as well. Contrast that with something like Backbone.js that has thousands of people watching it on Github, hundreds of forks where people may be working on it, and hundreds of questions already asked and answered here on Stack Overflow.

But none of it is of any importance if what you plan to build is not complicated enough to be worth the learning curve associated with a framework. If you're still building PHP, Java, or something else sites where the back end server is still doing all the heavy lifting of building the web pages upon request by the user and JavaScript/jQuery is just icing upon that process, you aren't going to need or are not yet ready for Backbone.js.

link|improve this answer
Thanks for the comparison to Gmail. That was an easy way for me to figure out I don't need to look further into this for the site I'm developing. – Eric Hu Sep 15 '11 at 20:07
+1 for mentioning that you'll end up writing something like backbone.js yourself anyway if your project gets big enough: re Greenspan's 10th Rule – Matthew Lock Mar 23 at 4:21
feedback

Here's an interesting presentation:

An intro to Backbone.js

Hint (from the slides):

  • Rails in the browser? No.
  • An MVC framework for JavaScript? Sorta.
  • A big fat state machine? YES!
link|improve this answer
feedback

This is a pretty good introductory video: http://vimeo.com/22685608

If you are looking for more on Rails and Backbone, Thoughtbot has this pretty good book (not free): https://workshops.thoughtbot.com/backbone-js-on-rails

link|improve this answer
feedback

JQuery and Mootools are just a toolbox with lot of tools of your project. Backbone acts like an architecture or a backbone for your project on which you can build an application using JQuery or Mootools.

link|improve this answer
feedback

Backbone.js is a JavaScript framework that helps you organize your code. It is literally a backbone upon which you build your application. It doesn't provide widgets (like jQuery UI or Dojo).

It gives you a cool set of base classes that you can extend to create clean JavaScript code that interfaces with RESTful endpoints on your server.

link|improve this answer
I use jQuery and mootools and general javascript heavily on my project. How learing backbone.js will help me and what is Restful endpoint.Sorry if my question doesnt makes sense. – sushil bharwani Mar 24 '11 at 11:34
jQuery is mainly for DOM Manipulation where as Backbone is heavily used as an event driven framework as well as being used for modelling data. – RobertPitt Mar 24 '11 at 11:41
feedback

It also adds routing using controllers and views with KVO. You'll be able to develop "AJAXy" applications with it.

See it as a lightweight Sproutcore or Cappuccino framework.

link|improve this answer
thanks but couldnt capture much... – sushil bharwani Mar 24 '11 at 11:34
feedback

Your Answer

 
or
required, but never shown

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