AngularJS best practices - m-kostira/angularjs-notes GitHub Wiki

Use components with isolate scope

  • avoids spaghetti code where you pass around data using scope (aka scope soup)

Use services to pass data around

  • avoids spaghetti code where you pass around data using scope (aka scope soup)