Angular Boilerplate

angularjs, javascript

Solution

There is no one correct way to structure every application. And definitely nothing more mainstream than what you've already found.

Start from that and work your way towards what's optimal for your current application. I would recommend a simpler structure at first (naturally separate vendor from application files, CSS etc.), then refactoring as you go along.

Problem

There seem to be quite some angular.js boilerplate-kits to get started; angular-seed, some using requirejs and so on, but lots of the ones I found appear to be quite dated. Being new to angular: is there any boilerplate "to go", something hyped everybody uses? I'm looking for a good, proved way to give my app structure. Things I could find so far include - yeoman/generator-angular - angular/angular-seed - CaryLandholt/AngularFun - angular-app/angular-app

Original source