While using Angular JS, I have a desire to organize unrelated code in separate modules similar to AMD or CommonJS. However, my Google search for 'Angular.JS make new module' has not yielded any documentation on creating Angular.JS modules.
There is a post on the Angular.JS Google Group that suggests dependencies must be included as additional script tags instead of being loaded dynamically like with other module systems. You can find more information here.
I am looking for documentation on how to create Angular modules that goes beyond just controllers and services. Are there resources available?
Regarding the statement about using script tags for dependencies, is it true? Do I really need to manually add script tags for every module I want to use?