SlideShare a Scribd company logo
introduction & patterns
Backbone.js
What is backbone.js
A Javascript MVC framework?
What is backbone.js
Almost.
What is backbone.js
Collection
Model
View
Router
Sync Events
S
E
R
V
E
R
B
R
O
W
S
E
R
C
T
R
L
Template
What is backbone.js
Collection
Model
View
Router
Sync Events
S
E
R
V
E
R
B
R
O
W
S
E
R
C
T
R
L
Template
Model
var Todo = Backbone.Model.extend({
urlRoot: “/api/todos”,
toggle: function() {
this.save({done: !this.get("done")});
}
});
var todo = new Todo({“id”: “1”});
todo.fetch();
todo.toggle();
What is backbone.js
Collection
Model
View
Router
Sync Events
S
E
R
V
E
R
B
R
O
W
S
E
R
C
T
R
L
Template
Collection
var Todos = Backbone.Collection.extend({
url: “/api/todos”,
model: Todo,
});
var todos = new Todos();
todos.fetch();
var todo = todos.get(“1”);
todo.toggle();
What is backbone.js
Collection
Model
View
Router
Sync Events
S
E
R
V
E
R
B
R
O
W
S
E
R
C
T
R
L
Template
Events
var todos = new Todos();
todos.on(“change”, function(eventName, this) {
console.log(“Todos changed”);
}, todos);
todos.fetch();
What is backbone.js
Collection
Model
View
Router
Sync Events
S
E
R
V
E
R
B
R
O
W
S
E
R
C
T
R
L
Template
View
var TodoView = Backbone.View.extend({
tagName: “li”,
events: {
“click .toggle”: “toggle”,
},
initialize: function() {
this.listenTo(this.model, “change”, this.render);
},
toggle: function() {
this.model.toggle();
}
render: function() {
this.$el.html(“<p><i class=’toggle’/>” + this.model.get(“name”) + ”
</p>”);
}
});
View
var TodosView = Backbone.View.extend({
initialize: function() {
this.listenTo(this.collection, “change”, this.render);
},
render: function() {
_.each(this.collection, function(todo) {
this.$el.append(new TodoView({model: todo}).render());
});
}
});
var todos = new Todos();
var todosView = new TodosView({collection: todos});
todos.fetch();
What is backbone.js
Collection
Model
View
Router
Sync Events
S
E
R
V
E
R
B
R
O
W
S
E
R
C
T
R
L
Template
Template
// underscore.js !
var TodoView = Backbone.View.extend({
…
template: _.template(...);
render: function() {
this.$el.html(this.template(this.model.attributes));
return this;
}
});
What is backbone.js
Collection
Model
View
Router
Sync Events
S
E
R
V
E
R
B
R
O
W
S
E
R
C
T
R
L
Template
Router
var app = Backbone.Router.extend({
routes: {
“/todos”: “todos”, // #/todos
“/todos/:id”: “todo” // #/todos/1
},
todos: function() {
...
},
todo: function(id) {
...
}
});
This is a lot of boilerplate code.
Fortunately backbone.js
supports inheritance!
Backbone patterns.
Thank you
● @theorm
● https://github.com/theorm/backbone-recipes

More Related Content

PPT
Backbone.js
PDF
Backbone.js slides
ODP
BackboneJS and friends
PPT
The Mobile Development Landscape
PDF
Realtime web apps rails
PDF
Backbonejs on Rails
PPTX
Javascript why what and how
PDF
AngularJS Deep Dives (NYC GDG Apr 2013)
Backbone.js
Backbone.js slides
BackboneJS and friends
The Mobile Development Landscape
Realtime web apps rails
Backbonejs on Rails
Javascript why what and how
AngularJS Deep Dives (NYC GDG Apr 2013)

What's hot (20)

PPTX
Backbone the Good Parts
PPTX
BackboneJS Training - Giving Backbone to your applications
PDF
Effective Web Application Development with Apache Sling
PDF
Integrating Browserify with Sprockets
PDF
遠端團隊專案建立與管理 remote team management 2016
PDF
Effective cassandra development with achilles
PPTX
An Overview on Nuxt.js
PDF
Drupal8 + AngularJS
PDF
Hash Signaling Made Easy
PDF
REST to JavaScript for Better Client-side Development
PDF
RESTFul development with Apache sling
PDF
Nuxt.JS Introdruction
PPTX
PPTX
Quick Start to AngularJS
PDF
WordPress as the Backbone(.js)
PPTX
Put a little Backbone in your WordPress
PDF
Kickstarting Node.js Projects with Yeoman
PDF
OSGi, Scripting and REST, Building Webapps With Apache Sling
PPTX
Backbonejs
PDF
Angular js vs. Facebook react
Backbone the Good Parts
BackboneJS Training - Giving Backbone to your applications
Effective Web Application Development with Apache Sling
Integrating Browserify with Sprockets
遠端團隊專案建立與管理 remote team management 2016
Effective cassandra development with achilles
An Overview on Nuxt.js
Drupal8 + AngularJS
Hash Signaling Made Easy
REST to JavaScript for Better Client-side Development
RESTFul development with Apache sling
Nuxt.JS Introdruction
Quick Start to AngularJS
WordPress as the Backbone(.js)
Put a little Backbone in your WordPress
Kickstarting Node.js Projects with Yeoman
OSGi, Scripting and REST, Building Webapps With Apache Sling
Backbonejs
Angular js vs. Facebook react
Ad

Viewers also liked (20)

PPT
Backbone.js
PDF
Intro to Backbone.js by Azat Mardanov for General Assembly
PDF
Introduction to Backbone.js
PDF
AngularJS vs. Ember.js vs. Backbone.js
PDF
Introduction à Marionette
PPTX
Backbone And Marionette : Take Over The World
PPTX
MVC & backbone.js
KEY
Beautiful Maintainable ModularJavascript Codebase with RequireJS - HelsinkiJ...
PPTX
Backbone/Marionette recap [2015]
PDF
Introduction to Marionette Collective
PPTX
Introduction to Backbone.js & Marionette.js
PPTX
Marionette talk 2016
PDF
Client-side MVC with Backbone.js
PDF
introduction to Marionette.js (jscafe14)
PPTX
Backbone.js
PDF
Marionette: the Backbone framework
PDF
PPTX
Introduction to Backbone.js
PPSX
RequireJS
PDF
Module, AMD, RequireJS
Backbone.js
Intro to Backbone.js by Azat Mardanov for General Assembly
Introduction to Backbone.js
AngularJS vs. Ember.js vs. Backbone.js
Introduction à Marionette
Backbone And Marionette : Take Over The World
MVC & backbone.js
Beautiful Maintainable ModularJavascript Codebase with RequireJS - HelsinkiJ...
Backbone/Marionette recap [2015]
Introduction to Marionette Collective
Introduction to Backbone.js & Marionette.js
Marionette talk 2016
Client-side MVC with Backbone.js
introduction to Marionette.js (jscafe14)
Backbone.js
Marionette: the Backbone framework
Introduction to Backbone.js
RequireJS
Module, AMD, RequireJS
Ad

Similar to Introduction to Backbone.js (20)

PPT
Backbonejs
PDF
[2015/2016] Backbone JS
PDF
Backbone JS for mobile apps
PDF
Raybiztech Guide To Backbone Javascript Library
PDF
Backbone.js
PDF
Backbone intro
PDF
Developing maintainable Cordova applications
PDF
Backbone
PDF
Backbone.js
KEY
Give Your JavaScript Apps Some Spine
PPTX
Backbonejs
PPTX
Backbone introduction
KEY
Give Your JavaScript Apps A Spine
PDF
¿Cómo de sexy puede hacer Backbone mi código?
PDF
Viking academy backbone.js
PPTX
MV* presentation frameworks in Javascript: en garde, pret, allez!
PDF
Backbone
PPTX
Writing HTML5 Web Apps using Backbone.js and GAE
PDF
Introduction to backbone js
PPT
Backbone introdunction
Backbonejs
[2015/2016] Backbone JS
Backbone JS for mobile apps
Raybiztech Guide To Backbone Javascript Library
Backbone.js
Backbone intro
Developing maintainable Cordova applications
Backbone
Backbone.js
Give Your JavaScript Apps Some Spine
Backbonejs
Backbone introduction
Give Your JavaScript Apps A Spine
¿Cómo de sexy puede hacer Backbone mi código?
Viking academy backbone.js
MV* presentation frameworks in Javascript: en garde, pret, allez!
Backbone
Writing HTML5 Web Apps using Backbone.js and GAE
Introduction to backbone js
Backbone introdunction

Recently uploaded (20)

PPTX
MYSQL Presentation for SQL database connectivity
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
cuic standard and advanced reporting.pdf
PPTX
sap open course for s4hana steps from ECC to s4
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Programs and apps: productivity, graphics, security and other tools
MYSQL Presentation for SQL database connectivity
NewMind AI Weekly Chronicles - August'25 Week I
Network Security Unit 5.pdf for BCA BBA.
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Advanced methodologies resolving dimensionality complications for autism neur...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Chapter 3 Spatial Domain Image Processing.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
The Rise and Fall of 3GPP – Time for a Sabbatical?
Dropbox Q2 2025 Financial Results & Investor Presentation
Mobile App Security Testing_ A Comprehensive Guide.pdf
MIND Revenue Release Quarter 2 2025 Press Release
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
“AI and Expert System Decision Support & Business Intelligence Systems”
Spectral efficient network and resource selection model in 5G networks
cuic standard and advanced reporting.pdf
sap open course for s4hana steps from ECC to s4
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Programs and apps: productivity, graphics, security and other tools

Introduction to Backbone.js