SlideShare a Scribd company logo
Dragos Andronic , TxtFeedback
 Pentru ca SPA (sau aplicatiile web interactive) sunt greu de tinut
sub control
 Pentru ca vrei structura, scalabilitate si mentenanta
 Backbone.js – ce este/ce nu este backbone.js
 Backbone.js – privire de ansamblu asupra tipurilor oferite
 Exemplu
 Sfaturi si referinte
 Backbone = librarie de tipuri ce te ajuta sa iti organizezi codul
 Backbone != framework (a se vedea Marionette)
 Backbone != Model View Something…
 Groveshark
 Foursquare
 Khan Academy
 AirBnb
 Trello
 LinkedIn Mobile
SERVER
Models
Collections
Views
DOM
Router
REST (JSON)
app.MyModel = Backbone.Model.extend({
defaults: {},
id: "", //isNew
attributes: {}, //get, set
validate: function(attrs, options) {},//invalid event
initialize: function() {},
parse: function(response, options) {}
});
 toJSON
 save
 fetch
 add/remove
 push/pop
 where, findWhere
 sort
var MyCollection = Backbone.Collection.extend({
model: app.MyModel,
url: “”
});
 el, $el
app.MyView = Backbone.View.extend({
tagName: 'div',
model: app.MyModel,
template: _.template($('#view-template').html()),
events: {},
render: function() {
this.$el.html(this.template(this.model.toJSON()));
},
initialize: functin () {}
});
 Generare elemente DOM
 Underscore template
 <% %>
 <%= %>
 <%- %>
var MyRouter= Backbone.Router.extend({
routes: {
"help": "help", // #help
"search/:query": "search", // #search/kiwis
"search/:query/p:page": "search" // #search/kiwis/p7
},
help: function() {},
search: function(query, page) {}
});
 TODOMVC
 Sfaturi
 Default values – folositi o functie
 Aveti grija la this (folositi listenTo, events, _.bind si _.bindAll)
 Referinte:
 http://backbonejs.org/
 http://ricostacruz.com/backbone-patterns/
 http://pluralsight.com/training/Courses/TableOfContents/backbone-
fundamentals
 http://addyosmani.github.io/backbone-fundamentals/
 http://todomvc.com/
dragos@txtfeedback.net
@dandronic
dragos@txtfeedback.net
@dandronic

More Related Content

Viewers also liked

Tecnología!!!
Tecnología!!!Tecnología!!!
Tecnología!!!
EMA_KAKU_PIA
 
Kost og diabetes køge
Kost og diabetes køgeKost og diabetes køge
Kost og diabetes køge
Karen Nørby
 
Classificados 40
Classificados 40Classificados 40
Classificados 40
CES_cursinho
 
Uso de Tecnologias: Um Experimento Didático na escola particular
 Uso de Tecnologias: Um Experimento Didático na escola particular Uso de Tecnologias: Um Experimento Didático na escola particular
Uso de Tecnologias: Um Experimento Didático na escola particular
Fabrizia Costa
 
Физика элементарных частиц: от микромира к проблемам Вселенной
Физика элементарных частиц: от микромира к проблемам ВселеннойФизика элементарных частиц: от микромира к проблемам Вселенной
Физика элементарных частиц: от микромира к проблемам Вселенной
Ilya Orlov
 
De kracht van het duo+label in de retail
De kracht van het duo+label in de retailDe kracht van het duo+label in de retail
De kracht van het duo+label in de retail
Netherlands Enterprise Agency (RVO.nl)
 
презентація борис с.я.
презентація борис с.я.презентація борис с.я.
презентація борис с.я.
Tamara Emec
 
New technologies & business models class notes
New technologies & business models class notesNew technologies & business models class notes
New technologies & business models class notes
Terryl Meador
 
Testimonial harizz from malaysia - vina volunteer service 1
Testimonial   harizz from malaysia - vina volunteer service 1Testimonial   harizz from malaysia - vina volunteer service 1
Testimonial harizz from malaysia - vina volunteer service 1Vina Volunteer Service
 
00009033-4200155138-60980743 (1)
00009033-4200155138-60980743 (1)00009033-4200155138-60980743 (1)
00009033-4200155138-60980743 (1)Valerie Gonzalez
 

Viewers also liked (13)

Tecnología!!!
Tecnología!!!Tecnología!!!
Tecnología!!!
 
Kost og diabetes køge
Kost og diabetes køgeKost og diabetes køge
Kost og diabetes køge
 
Classificados 40
Classificados 40Classificados 40
Classificados 40
 
Corall vermell
Corall vermellCorall vermell
Corall vermell
 
Uso de Tecnologias: Um Experimento Didático na escola particular
 Uso de Tecnologias: Um Experimento Didático na escola particular Uso de Tecnologias: Um Experimento Didático na escola particular
Uso de Tecnologias: Um Experimento Didático na escola particular
 
Физика элементарных частиц: от микромира к проблемам Вселенной
Физика элементарных частиц: от микромира к проблемам ВселеннойФизика элементарных частиц: от микромира к проблемам Вселенной
Физика элементарных частиц: от микромира к проблемам Вселенной
 
Ocell òliba
Ocell òlibaOcell òliba
Ocell òliba
 
De kracht van het duo+label in de retail
De kracht van het duo+label in de retailDe kracht van het duo+label in de retail
De kracht van het duo+label in de retail
 
презентація борис с.я.
презентація борис с.я.презентація борис с.я.
презентація борис с.я.
 
New technologies & business models class notes
New technologies & business models class notesNew technologies & business models class notes
New technologies & business models class notes
 
Testimonial harizz from malaysia - vina volunteer service 1
Testimonial   harizz from malaysia - vina volunteer service 1Testimonial   harizz from malaysia - vina volunteer service 1
Testimonial harizz from malaysia - vina volunteer service 1
 
Peix tigre
Peix tigrePeix tigre
Peix tigre
 
00009033-4200155138-60980743 (1)
00009033-4200155138-60980743 (1)00009033-4200155138-60980743 (1)
00009033-4200155138-60980743 (1)
 

Similar to Backbone.js - Dragos Andronic

Backbone js in action
Backbone js in actionBackbone js in action
Backbone js in action
Usha Guduri
 
Backbone.js and friends
Backbone.js and friendsBackbone.js and friends
Backbone.js and friends
Good Robot
 
Dependency Management with RequireJS
Dependency Management with RequireJSDependency Management with RequireJS
Dependency Management with RequireJS
Aaronius
 
Backbone js
Backbone jsBackbone js
Backbone js
Knoldus Inc.
 
Getting into ember.js
Getting into ember.jsGetting into ember.js
Getting into ember.js
reybango
 
Approaches to mobile site development
Approaches to mobile site developmentApproaches to mobile site development
Approaches to mobile site development
Erik Mitchell
 
Backbone js in drupal core
Backbone js in drupal coreBackbone js in drupal core
Backbone js in drupal core
Marcin Wosinek
 
Backbonejs on Rails
Backbonejs on RailsBackbonejs on Rails
Backbonejs on Rails
Luis Alfredo Porras Páez
 
Java Technology
Java TechnologyJava Technology
Java Technology
ifnu bima
 
myEquivalents, aka a new cross-reference service
myEquivalents, aka a new cross-reference servicemyEquivalents, aka a new cross-reference service
myEquivalents, aka a new cross-reference service
Rothamsted Research, UK
 
MVC on the server and on the client
MVC on the server and on the clientMVC on the server and on the client
MVC on the server and on the client
Sebastiano Armeli
 
MVC on the Server and on the Client: How to Integrate Spring MVC and Backbone...
MVC on the Server and on the Client: How to Integrate Spring MVC and Backbone...MVC on the Server and on the Client: How to Integrate Spring MVC and Backbone...
MVC on the Server and on the Client: How to Integrate Spring MVC and Backbone...
jaxconf
 
MVC & backbone.js
MVC & backbone.jsMVC & backbone.js
MVC & backbone.js
Mohammed Arif
 
A Little Backbone For Your App
A Little Backbone For Your AppA Little Backbone For Your App
A Little Backbone For Your App
Luca Mearelli
 
Headless Drupal en pratique
Headless Drupal en pratiqueHeadless Drupal en pratique
Headless Drupal en pratique
Simon Morvan
 
Writing HTML5 Web Apps using Backbone.js and GAE
Writing HTML5 Web Apps using Backbone.js and GAEWriting HTML5 Web Apps using Backbone.js and GAE
Writing HTML5 Web Apps using Backbone.js and GAE
Ron Reiter
 
How to React Native
How to React NativeHow to React Native
How to React Native
Dmitry Ulyanov
 
Javascript frameworks: Backbone.js
Javascript frameworks: Backbone.jsJavascript frameworks: Backbone.js
Javascript frameworks: Backbone.js
Soós Gábor
 
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
Nick Sieger
 
Using Backbone.js with Drupal 7 and 8
Using Backbone.js with Drupal 7 and 8Using Backbone.js with Drupal 7 and 8
Using Backbone.js with Drupal 7 and 8
Ovadiah Myrgorod
 

Similar to Backbone.js - Dragos Andronic (20)

Backbone js in action
Backbone js in actionBackbone js in action
Backbone js in action
 
Backbone.js and friends
Backbone.js and friendsBackbone.js and friends
Backbone.js and friends
 
Dependency Management with RequireJS
Dependency Management with RequireJSDependency Management with RequireJS
Dependency Management with RequireJS
 
Backbone js
Backbone jsBackbone js
Backbone js
 
Getting into ember.js
Getting into ember.jsGetting into ember.js
Getting into ember.js
 
Approaches to mobile site development
Approaches to mobile site developmentApproaches to mobile site development
Approaches to mobile site development
 
Backbone js in drupal core
Backbone js in drupal coreBackbone js in drupal core
Backbone js in drupal core
 
Backbonejs on Rails
Backbonejs on RailsBackbonejs on Rails
Backbonejs on Rails
 
Java Technology
Java TechnologyJava Technology
Java Technology
 
myEquivalents, aka a new cross-reference service
myEquivalents, aka a new cross-reference servicemyEquivalents, aka a new cross-reference service
myEquivalents, aka a new cross-reference service
 
MVC on the server and on the client
MVC on the server and on the clientMVC on the server and on the client
MVC on the server and on the client
 
MVC on the Server and on the Client: How to Integrate Spring MVC and Backbone...
MVC on the Server and on the Client: How to Integrate Spring MVC and Backbone...MVC on the Server and on the Client: How to Integrate Spring MVC and Backbone...
MVC on the Server and on the Client: How to Integrate Spring MVC and Backbone...
 
MVC & backbone.js
MVC & backbone.jsMVC & backbone.js
MVC & backbone.js
 
A Little Backbone For Your App
A Little Backbone For Your AppA Little Backbone For Your App
A Little Backbone For Your App
 
Headless Drupal en pratique
Headless Drupal en pratiqueHeadless Drupal en pratique
Headless Drupal en pratique
 
Writing HTML5 Web Apps using Backbone.js and GAE
Writing HTML5 Web Apps using Backbone.js and GAEWriting HTML5 Web Apps using Backbone.js and GAE
Writing HTML5 Web Apps using Backbone.js and GAE
 
How to React Native
How to React NativeHow to React Native
How to React Native
 
Javascript frameworks: Backbone.js
Javascript frameworks: Backbone.jsJavascript frameworks: Backbone.js
Javascript frameworks: Backbone.js
 
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
 
Using Backbone.js with Drupal 7 and 8
Using Backbone.js with Drupal 7 and 8Using Backbone.js with Drupal 7 and 8
Using Backbone.js with Drupal 7 and 8
 

Backbone.js - Dragos Andronic