Is it possible to load plain old JS or AMD modules from an Angular Controller? I have previously used RequireJS for this.
I have used AngularJS and RequireJS on a fa
Angular's module system is not like RequireJS. Angular only concerns itself with module definition and composition but not with module loading.
That means angular will not issue an HTTP request for loading any javascript, you are responsible for loading that yourself, by using tags or another javascript loader, like requirejs.
Furthermore, angular requires that all modules be loaded and configured before the angular application is bootstrapped. This makes it difficult to support any sort of lazy-loading schemes for angular modules.
Making angular be able to deal with more dynamic loading of modules is a featured planned for future releases.