I recently started using AngularJS and the way I\'m building my apps now is like this:
var app = angular.module(\'app\', [\'SomeC
You can use $rootScope, each Angular application has exactly one root scope.
$rootScope
Reference
app.controller('MainController', function ($scope, $rootScope) { $rootScope.data = 'App scope data'; }