anchordb-angular 1.2.0 → 1.3.2
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 +12 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
Angular and Ionic bindings for [AnchorDB](https://www.npmjs.com/package/anchordb) — the same
|
|
4
4
|
module and injection shape as `@nestjs/mongoose`, with SQLite storage ready after one install.
|
|
5
5
|
|
|
6
|
+
**[Overview](https://www.nisalanadeera.com/projects/anchordb)** · **[Report a bug or get support](https://www.nisalanadeera.com/projects/anchordb#feedback)**
|
|
7
|
+
|
|
6
8
|
```bash
|
|
7
9
|
npm install anchordb-angular
|
|
8
10
|
```
|
|
@@ -115,7 +117,7 @@ MIT.
|
|
|
115
117
|
|
|
116
118
|
## The AnchorDB family
|
|
117
119
|
|
|
118
|
-
|
|
120
|
+
Six packages. **Only `anchordb` is required** — the rest exist so that an offline-only app never
|
|
119
121
|
has to download Express, and an Express server never has to download React.
|
|
120
122
|
|
|
121
123
|
| Package | What it is | Runs where |
|
|
@@ -125,7 +127,16 @@ has to download Express, and an Express server never has to download React.
|
|
|
125
127
|
| **`anchordb-angular`** *(this package)* | Angular / Ionic module, DI and RxJS observables | the device |
|
|
126
128
|
| [`anchordb-sync-server`](https://www.npmjs.com/package/anchordb-sync-server) | Server half of sync — Express, NestJS, Next.js | your backend |
|
|
127
129
|
| [`anchordb-relay`](https://www.npmjs.com/package/anchordb-relay) | Dev relay for the Anchor Lens inspector | your laptop |
|
|
130
|
+
| [`anchordb-lens-link`](https://www.npmjs.com/package/anchordb-lens-link) | Open a QA build's database in Anchor Lens on the same phone, from a file | the device, in QA builds |
|
|
128
131
|
|
|
129
132
|
Each one needs a different third-party framework as a peer dependency, and npm resolves those per
|
|
130
133
|
package rather than per import — which is why they are not one package. Full reasoning and API
|
|
131
134
|
reference: [github.com/knnadeera/anchordb](https://github.com/knnadeera/anchordb).
|
|
135
|
+
|
|
136
|
+
## Bugs, support and feedback
|
|
137
|
+
|
|
138
|
+
Report a bug, ask for help or suggest a feature on the [AnchorDB project page](https://www.nisalanadeera.com/projects/anchordb#feedback) —
|
|
139
|
+
choose `anchordb-angular` as the package, and the reply comes by email.
|
|
140
|
+
|
|
141
|
+
Include the version (`npm ls anchordb`), where it runs, the smallest snippet that reproduces it, and
|
|
142
|
+
the full error.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anchordb-angular",
|
|
3
|
-
"version": "1.2
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@capacitor-community/sqlite": ">=6",
|
|
36
36
|
"@capacitor/core": ">=6",
|
|
37
|
-
"anchordb": "^1.
|
|
37
|
+
"anchordb": "^1.3.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"rimraf": "^6.0.1"
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
"url": "git+https://github.com/knnadeera/anchordb.git",
|
|
61
61
|
"directory": "packages/angular"
|
|
62
62
|
},
|
|
63
|
-
"homepage": "https://
|
|
63
|
+
"homepage": "https://www.nisalanadeera.com/projects/anchordb",
|
|
64
64
|
"bugs": {
|
|
65
|
-
"url": "https://
|
|
65
|
+
"url": "https://www.nisalanadeera.com/projects/anchordb#feedback"
|
|
66
66
|
},
|
|
67
67
|
"engines": {
|
|
68
68
|
"node": ">=20"
|