So basically I am making a fantasy Web app using Angular JS. I have created a pretty standard list of players by describing them in my controller in a $scope.players array. The user can also select players (which is then pushed into an empty array called $scope.history). But I fear i might have started out in the wrong way.
Considering: 1. each user will have to have their choices saved, and 2.depending on the performance of each player (goals and Assists) per match, they would also have to have their stats updated
Is it better to have all players saved in a JSON file on my wampserver and using $http.get to get the data?