I have a schedule app built with AngularJS and I'm looking for a way to save the data changed within the app to disk after I close it. When I open the app again I want it to read the freshly modified JSON file again with the new data.
I don't need it to stay in localStorage because if I clear my cache I will lose all the changes.
Is it possible to save from localStorage to disk?
Any solution is welcome.