I am utilizing an AngularJS schedule app and I am interested in finding a method to save the changes made within the app to disk when it is closed. Upon reopening the app, I would like it to retrieve the updated data from the JSON file.
Storing data in localStorage is not ideal for me as clearing my cache will result in losing all the modifications.
Is there a way to transfer data from localStorage to disk?
I appreciate any suggestions or solutions that can be offered.