Browsing Tag

backbone

Build a Contacts Manager Using Backbone.js: Part 5

Build a Contacts Manager Using Backbone.js: Part 5

Welcome back to the Building a content viewer with Backbone series. Over the first four parts, we looked at almost every major component that ships with the latest version of Backbone including models, controllers, views and routers.

In this part of the tutorial, we’re going to hook our application up to a web server so that we can store our contacts in a database. We won’t be looking at LocalStorage; this is a popular means of persisting the data that Backbone apps use, but the fact is there are already a number of excellent tutorials available on this subject.


This entry is part 5 of 5 in the Getting to Know Backbone.js Session
Build a Contacts Manager Using Backbone.js: Part 4

Build a Contacts Manager Using Backbone.js: Part 4

In part four of this series, we saw how easy it is to add and remove models from our collection, and keep the page updated in sync with the changes. In this part, we’re going to look at editing existing model data.


This entry is part 4 of 5 in the Getting to Know Backbone.js Session
Build a Contacts Manager Using Backbone.js: Part 3

Build a Contacts Manager Using Backbone.js: Part 3

Welcome to part three of our series that focuses on building applications using Backbone. If you haven’t read parts one and two, I strongly recommend that you do — just so you know where we’re at and what we’ve covered so far.

In part one, we took a basic look and models, views and collections. In part two, we looked at routers, events and the history modules. In this part, we’re going to look further at interactions and see how we can add or remove models from a collection.


This entry is part 3 of 5 in the Getting to Know Backbone.js Session
20 JavaScript Frameworks Worth Checking Out

20 JavaScript Frameworks Worth Checking Out

The number of web applications being created and used has grown rapidly since the new millenium. And importantly, so has the sheer complexity of them — specially on the front end. No more static pages, no sir!

You have a ton of sections each interacting with each other and the server and yes, it’s as complicated as it sounds and just as hard to pull off. Today, I’d like to talk about a few, choice JavaScript frameworks that aim to simplify front end application development.

Getting Started with Backbone.js

Getting Started with Backbone.js

Unlike its web development peers, JavaScript has never really had much in the way of frameworks to provide structure. Thankfully, in recent years, that’s beginning to change.

Today, I’d like to introduce you to Backbone.JS, a sweet little library that makes the process of creating complex, interactive and data driven apps so much easier. It provides a clean way to surgically separate your data from your presentation.