1
Ask HN: Best way to sync data with JavaScript?
We have a mobile app written on AngularJS - Phonegap/Ionic-based, calling some REST APIs who store and process app's data.
We'd like to store data locally and synchronise it later because we are having a lot of issues with internet connection on some regions.
So basically we'd like: Data -> Local storage -> {sync mechanism} -> REST API -> Database
We implemented something but it's not working as well as we'd like.
Any ideas of architecture and/or possible frameworks to solve this on a simple way?
Thanks!