We need to define a collection with a url property. This is the url to an API endpoint which should return a json formatted array.
var Books = Backbone.Collection.extend({
url: "/api/book",
comparator: "title",
});
Then, within a view, we'll fetch and render asynch...