angularjs + requirejs structure to build a huge modular app
问题 I'm trying to build a huge Modular Web App with AngularJs and RequireJS. This is my directory that I want to build: |--index.html |--css |--images |--libs | └--angular.js | └--angular-route.js | └--require.js | |--js | └--app.js | └--controller.js | └--module |--user | |--controller | | └--index.js (that is controller to list all users) | | └--add.js (this controller to add new user) | |--service | | └--user.js | └--template | └--index.tpl.html | └--add.tpl.html | └--photo |--controller | └-