@anfenn/dync 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -10,11 +10,11 @@ Start with a Website or PWA using IndexedDB, sync with your existing REST API, a
|
|
|
10
10
|
|
|
11
11
|
1. Frictionless upgrade path from an offline-first PWA targeting IndexedDB, to when:
|
|
12
12
|
|
|
13
|
-
**A)
|
|
13
|
+
**A) Full text search is required on many records** (IndexedDB doesn't support this so will do a full table scan in the JS VM, which is slow on many records)
|
|
14
14
|
|
|
15
15
|
**_and/or_**
|
|
16
16
|
|
|
17
|
-
**B)
|
|
17
|
+
**B) Encryption is required** (Browsers can't store the encryption key securely)
|
|
18
18
|
|
|
19
19
|
... you can simply add CapacitorJs or move to React Native which have sqlite & secure enclave storage, and only change the adapter Dync uses
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anfenn/dync",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Write once, run IndexedDB & SQLite with sync anywhere - React, React Native, Expo, Capacitor, Electron & Node.js",
|
|
6
6
|
"keywords": [],
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"author": "Adam Fennell",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/anfen/dync.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/anfen/dync/issues"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/anfen/dync#readme",
|
|
9
17
|
"type": "module",
|
|
10
18
|
"react-native": "./src/index.native.ts",
|
|
11
19
|
"exports": {
|