I\'ve created a local JSON file and am able to get data from the file using
app.controller(\'appCtrl\', function($scope, $http){
$http.get(\'employees.json\')
I don't think it's possible to do that directly from Angular. There are some other sources that you integrate into your app, which you can then have Angular leverage.
You could also just store it as localstorage and access it as you would just about any other object. This would be the method that I'd lean towards more (depending on the size). Otherwise I've always had to have the server-side do it.