kaiware-sync
TypeScript icon, indicating that this package has built-in type declarations

2.3.0 • Public • Published

Kaiware Sync

CircleCI npm

Kaiware Sync is a web service to sync app settings across devices.

Examples

// Initialize
const sync = new KaiwareSync({
  appId: 'com.garredow.kaiware-sync-demo',
});

// Opens a new window to the login screen
await sync.signin();

// Store app data in the cloud
await sync.set({ theme: 'dark', accentColor: 'red' });

// Fetch app data
const data = await sync.get();

// Delete app data
await sync.delete();

To see an example of an app using Kaiware Sync, including logging in, check out kaiware-sync-demo.

Dependencies (0)

    Dev Dependencies (13)

    Package Sidebar

    Install

    npm i kaiware-sync

    Weekly Downloads

    1

    Version

    2.3.0

    License

    MIT

    Unpacked Size

    10.8 kB

    Total Files

    19

    Last publish

    Collaborators

    • garredow