So right now I my project is structured so that my server side code lives in a server folder.
I have broken up my javascript into multiple files and was previously using require.js. Right now, I've tried using
Npm.require
and
__meteor_bootstrap__.require
to get the 'exports'object of the different files, but that is not working.
In other words, how do I properly use require.js with Meteor? Or is there some better way of breaking up large javascript files in Meteor?