Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SyncProxy/sync-client
SyncProxy javascript client with support for all major embedded databases (IndexedDB, SQLite, WebSQL, LokiJS...)
https://github.com/SyncProxy/sync-client
app database embedded-database indexeddb ionic localstorage mobile mongodb mysql nosql offline reactive-sync reactivity sql sql-server sqlite sqlserver sync-client synchronization websql
Last synced: 5 days ago
JSON representation
SyncProxy javascript client with support for all major embedded databases (IndexedDB, SQLite, WebSQL, LokiJS...)
- Host: GitHub
- URL: https://github.com/SyncProxy/sync-client
- Owner: SyncProxy
- License: mit
- Created: 2018-05-14T13:37:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-03T16:57:38.000Z (almost 4 years ago)
- Last Synced: 2024-08-02T15:36:42.465Z (3 months ago)
- Topics: app, database, embedded-database, indexeddb, ionic, localstorage, mobile, mongodb, mysql, nosql, offline, reactive-sync, reactivity, sql, sql-server, sqlite, sqlserver, sync-client, synchronization, websql
- Language: JavaScript
- Homepage: https://www.syncproxy.com
- Size: 1.1 MB
- Stars: 43
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction
SyncProxy-client is a javascript client for SyncProxy that enables one-single line of code implementation of synchronization for javascript offline applications using embedded database (IndexedDB, SQLite, SQLJS, WebSQL, LokiJS...). Used with the SyncProxy server (https://www.syncproxy.com) to access the backend database (MySQL, SQL Server, MongoDB...), this is the shortest way to make mobile offline applications synchronize bi-directionally in realtime using reactive sync technology.# Installation
```
$ git clone https://github.com/syncproxy/sync-client
```
# Example
Simply copy the library, then load the SyncProxy client script from within your main index.html page:```html
```(the script params can also be retrieved directly from https://my.syncproxy.com when creating a sync proxy)
## Custom params
Sync client script can be invoked with custom params that are inserted as attributes of the **<script>** tag:**src (mandatory)**
path to the client sync script (recommended: "client-sync/client-sync.js")**proxyID (mandatory)**
Id attributed by SyncProxy to your proxy on creation**connectorType**
values: "IndexedDB", "WebSQL", "SQLite", "SQLJS", "LocalStorage", "IonicStorage", "LokiJS"
default: "IndexedDB"**dbName**
Name of your embedded database in mobile app.
default: "SyncProxy"**protocol**
values: "ws" (websocket) or "wss" (secured websoket)
default: "wss"**serverUrl**
Url of the server hosting SyncProxy
default: "my.syncproxy.com"**serverPort**
Port listened on by SyncProxy server
default value: 4501**autoUpgradeDB**
values: "true", "false"
If true, the embedded database's structure will be automatically upgraded (if this is relevant to the type of database) during sync after a database schema update.
Set to false if application creates and upgrades database schema by itself.
default: "true"**physicalSchemaReadDelay**
Delay after which, if no sync schema was found, the sync client will try to read the schema from the physical data store (if this is relevant to the type of database).
If set to "0", the schema is not read from the physical data store.
default: "5000"**autoInit**
values: "true", "false"
If true, sync client will be started automatically. If false, sync client should be created by calling SyncClient.initClient(params)
default: "true"**reactiveSync**
values: "true", "false"
If true, enables reactive sync. Reactivity for each table + direction (server->client and client->server) is configured on server side
default: "true**syncButton**
values: "true", "fixed", "false"
If true, a draggable popup sync button is displayed. If fixed, button's position is fixed. If false, application must take care to launch sync by itself
default: "true"**tablesToSync**
When using Auto Backendless database or NoSQL database without server database schema, you have the ability to discover schema from client's data. In that case, attribute tablesToSync must be set with the list of tables to sync from client to server.
default: ""**customCredentials**
If set, defines a custom credential function. Typically returns a {login, password} object which will be sent as-is to the server. If left blank, the credentials are managed by sync client using a login prompt.
default: ""**loginSource**
If set, defines a user login source object within the application, for instance: "document.getElementById('inputLogin').value"
default: ""**passwordSource**
If set, defines a user password source object within the application, for instance: "document.getElementById('inputPassword').value"
default: ""**zipData**
values: "true", "false"
If true, server will be requested to send data changes as zipped JSON, otherwise plain JSON.
default: "true"**welcomeMessage**
Message that will popup in the app before the first synchronization.
default: "To begin, please press Sync button"**utcDates**
values: "true", "false"
If true (default), all datetimes will be stored as ISO-8601 strings, otherwise as "YYYY-MM-DD HH:MI:SS" (without timezone information).
default: "true"**onServerChanges(data)**
Optional handler function called each time a chunk of data is received from server. Received data are passed as a parameter.**onSyncEnd**
Optional handler function called each time synchronization ends**useSessionStorage**
values: "true", "false"
If true, use the sessionStorage in replacement of the localStorage (for testing purposes)
Default: "false"## Testing
Like us, test your mobile and progressive web apps with[](http://www.browserstack.com)
## Documentation
Read our tutorial on how to setup SyncProxy client with an Ionic hybrid mobile application
https://github.com/syncproxy/syncproxy-quickstart-ionic