26
Garry Shutler Backbone.js @gshutler

Introduction to Backbone.js - DDD North

Embed Size (px)

Citation preview

Page 1: Introduction to Backbone.js - DDD North

Garry ShutlerBackbone.js

@gshutler

Page 2: Introduction to Backbone.js - DDD North

Web is changingAPIs & clients

Page 3: Introduction to Backbone.js - DDD North

JavascriptNot simple now

Page 4: Introduction to Backbone.js - DDD North

Hate boilerplateNeed framework

Page 5: Introduction to Backbone.js - DDD North

What?

Page 6: Introduction to Backbone.js - DDD North

What?Routing

Page 7: Introduction to Backbone.js - DDD North

What?Eventing

Page 8: Introduction to Backbone.js - DDD North

What?Persistence

Page 9: Introduction to Backbone.js - DDD North

What?Rendering

Page 10: Introduction to Backbone.js - DDD North

What?Conventions

Page 11: Introduction to Backbone.js - DDD North

What?Documentation

Page 12: Introduction to Backbone.js - DDD North

What?Simplicity

Page 13: Introduction to Backbone.js - DDD North

What?Testable

Page 14: Introduction to Backbone.js - DDD North

ExampleTodo list

Page 15: Introduction to Backbone.js - DDD North

Task{

“id” : integer,

“name” : string,

“description” : string,

“status” : “todo” | “doing” | “done”

}

Page 16: Introduction to Backbone.js - DDD North

APIGET /tasks

POST /tasks

GET /tasks/{id}

PUT /tasks/{id}

DELETE /tasks/{id}

Page 17: Introduction to Backbone.js - DDD North

View

Page 18: Introduction to Backbone.js - DDD North

DivideConquer

Page 19: Introduction to Backbone.js - DDD North

View

Page 20: Introduction to Backbone.js - DDD North

View

Page 21: Introduction to Backbone.js - DDD North

View

Page 22: Introduction to Backbone.js - DDD North

View

Page 23: Introduction to Backbone.js - DDD North

CodezI haz them

Page 24: Introduction to Backbone.js - DDD North

Thoughts

Page 25: Introduction to Backbone.js - DDD North

Questions