@syncto/offline
v1.0.22
Published
Synchronise your data to your browser store
Downloads
7
Readme
SyncTo Offline
Add offline first support to your application with no extra code
SyncTo uses annotations to decorate data stores. It can syncronize date both to browser storage and your server side API too.
Installation
$ npm install @syncto/offline --save
Example Usage
class MyStore {
@offline
propertyToSave = 'value';
}
myStoreInst = new MyStore();