I have been working on a javascript application for a long time now, it started out quite small and I was the only one working on it. However, it's getting quite large. I would like to bring in another developer to speed up the work.
The problem is, this application consists of just one js file (15000 lines of code), working together on this app in the current situation would bring me a lot of misery when merging our work (I'm using git).
The app is built on Douglas Crockford's base2 library. It also uses jQuery for DOM manipulation, jQuery UI, Modernizr and a few others.
It's structured like this:
App = {};
App.model = {};
App.view = {};
App.controller = {};
App.main = base2.Base.extend({
// uses models, views, controllers
});
App.model.AbstractModel = base2.Base.extend({
constructor: function(){ ... },
someMethod: function(){ ... }
// etc.
});
App.model.AModel = App.model.AbstractModel.extend({
// override some method
someMethod: function(){ ... }
});
Now my question is, as the title states: (how) can I use RequireJS to make this app modular, consisting of separate files, with the eye on easier cooperation with other developers? Is RequireJS a good choice or should I go down a different path?
