I'm building an AngularJS application. I don't have external dependencies, but I do have my application broken up into different files for controllers, services, etc.
I'd like to combine all this JS into a single file, so the browser has to make one request to get all the code rather than multiple requests (one for each file). Minification would also be nice.
From what I've been reading so far, Browserify is what I need to use. Does that sound about right? Is there anything folks recommend over this solution?