Making it easy to create an application using RequireJS and BackboneJS
This application is a starting point to design a modular application using RequireJS, and BackboneJS.
The build.bat file in the js directory also has scripts to run to build the application with either NodeJS, or Java.
There are simple examples of how to write a router, view, and model.
Feel free to fork and use in your own BackboneJS app!!
order.js
shimconfig object to have non AMD libraries work with RequireJS
oldamd
This is the latest way to add non AMD libraries to RequireJS.
require.config({ 'paths': { "underscore": "libs/underscore-min", "backbone": "libs/backbone-min" }, 'shim': { backbone: { 'deps': ['jquery', 'underscore'], 'exports': 'Backbone' } } });
Hit me up for questions! @jcreamer898