Our development team began a great transition to the Angular2 / Ionic2 infrastructure, and one small detail left us puzzled - what is the best way to achieve data continuity? I found an almost two-year-old Google Doc in design to save Ang2 data, however it doesn't seem to be implemented at all. I need the most important functions:
- client-server data binding, so every change is automatically committed
- local dataset for working with the application offline
- offline operation caching, synchronization with the server immediately upon reconnection
(In short, the functionality of Swarm.js, for example) I searched for blogs, stackoverflow, but havenβt answered anything yet - as far as I understand, I canβt even use widespread external solutions like PouchDB to solve this problem, and constantly do HTTP receiving / post calls with manual caching in localStorage will not do this for the projects we are working on. What do you think? Is there any way to achieve this?
source share