I am separating my views and router into separate files with require. I then have a main.js file that instantiates the router, and also renders my default view.
My r
For me, the solution with goTo function worked with a slight change
Backbone.View.prototype.goTo = function (loc) { appRouter.navigate(loc, true); };