UNPKG

generator-base-backbone

Version:

Backbone.js basic skeleton for webapp development. With RequireJS, Bootstrap, Sass, and templating with Pug and Lodash. Also with JSHint and Grunt.

11 lines 253 B
'use strict'; define(['backbone'], function(Backbone) { var DataCollection = Backbone.Collection.extend({ url: 'data/data.json', initialize: function() {}, parse: function(response) { return response; } }); return new DataCollection(); });