All Questions
Tagged with angularjs-module lazy-loading
2 questions
5
votes
1
answer
1k
views
Loading Module After Angular Bootstrap
I am trying to load and inject a module after app bootstrap. For example let's say my initial module is:
angular.module('mainApp', []);
Later on I realize the user needs all of the routes available ...
6
votes
2
answers
1k
views
AngularJs Lazy Loadng without RequireJS
In a large scale application, How do we lazy load modules, controllers, services whenever needed without loading those in the index.html. Here I'm referring to load the entire js in the relevant ...