I am making a mobile SPA application, using AngularJS and Breeze.
The users of this application are going to be able to watch some items and I want the application to remember what items the user has watched and how often. From this information I want to be able to create a list of "favorite items" or "Recent items".
I am NOT thinking of saving this information to the back-end. I want this information saved in browser cache - until the browser cache is cleared at some time.
How would I do this?
Cookies?
Does Angular or Breeze have something to help me achieve this?