Do you use Browserify to organize your Angular 1.x projects?
Browserify seems convenient to load external modules as well as internal ones, it's largely used by React developers. Have you used it before with angular 1.x? if so, what's your approach?
Some people use native dependency injection of angular to separate modules in different folders/files. set the main module and then use getter for (controllers/services/directives etc...), when embedding the files in html you just include the getter first then the order of other files doesn't matter! But I kind of like to know how other people use browserify with angular.
Marcin Piekarski
If your not using Browserify. What are you using with your Angular 1.x projects, and why? :)