I am building a mobile app with Ionic2.
The backend service is MongoDb.
The data is generated on the mobile app (GPS paths). User can also upload
the tracks via a browser.
The goal is to keep a list of all GPS recordings on the mobile in sync with backend.
I could use for storing data on mobile PouchDb, ForerunnerDb, sqllite or localstorage.
The question is what is the technique to sync data with the backend?
PouchDb requires CouchDb on the server, so not an option.
I could write some sync code myself, but would not want to re-invent the wheel if it’s possible.
Could you pls share how you do it? I don’t really care about deletion of items and updates,
once a track was created.