@zvndev/powdb-embedded 0.7.1 → 0.8.1
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 +64 -2
- package/index.d.ts +44 -3
- package/index.js +52 -52
- package/package.json +20 -8
- package/powdb-embedded.darwin-arm64.node +0 -0
- package/powdb-embedded.linux-arm64-gnu.node +0 -0
- package/powdb-embedded.linux-x64-gnu.node +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @zvndev/powdb-embedded
|
|
2
2
|
|
|
3
|
-
Embedded [PowDB](https://github.com/
|
|
3
|
+
Embedded [PowDB](https://github.com/ZVN-DEV/powdb) for Node — run the database
|
|
4
4
|
engine **in-process**, no server and no socket. The SQLite-shaped front door to
|
|
5
5
|
PowDB: a single function call, no network round-trip, works offline.
|
|
6
6
|
|
|
@@ -11,7 +11,7 @@ const db = Database.open("./data");
|
|
|
11
11
|
|
|
12
12
|
db.query("type User { required name: str, age: int }");
|
|
13
13
|
const inserted = db.query(`insert User { name := "Ada", age := 36 } returning`);
|
|
14
|
-
const rows = db.query("User { name, age }
|
|
14
|
+
const rows = db.query("User filter .age > 18 { .name, .age }");
|
|
15
15
|
const count = db.querySql("SELECT count(*) FROM User"); // SQL frontend too
|
|
16
16
|
```
|
|
17
17
|
|
|
@@ -23,8 +23,56 @@ const count = db.querySql("SELECT count(*) FROM User"); // SQL frontend too
|
|
|
23
23
|
- `db.query(powql)` — run a PowQL statement.
|
|
24
24
|
- `db.querySql(sql)` — run a SQL statement (lowered to PowQL).
|
|
25
25
|
- `db.queryReadonly(powql)` — run a read-only statement.
|
|
26
|
+
- `db.applyRetainedUnits(request)` — apply one sync retained-unit chunk from
|
|
27
|
+
`@zvndev/powdb-client` to a bootstrapped embedded replica.
|
|
26
28
|
- `db.setSyncMode(mode)` — set WAL durability: `"full"` | `"normal"` | `"off"`.
|
|
27
29
|
- `db.isPoisoned()` — `true` if a previous call panicked (reopen the database).
|
|
30
|
+
- `db.close()` — flush, checkpoint, and release the data-directory lock. See
|
|
31
|
+
below.
|
|
32
|
+
|
|
33
|
+
Opening the same directory twice in one process throws — a single process must
|
|
34
|
+
share one handle, not two engines over the same files.
|
|
35
|
+
|
|
36
|
+
## Closing
|
|
37
|
+
|
|
38
|
+
`db.close()` flushes and checkpoints the database (unless the handle is
|
|
39
|
+
poisoned), then releases the data-directory lock so another process — or
|
|
40
|
+
another handle in this one — can open it. Any call after `close()` throws
|
|
41
|
+
`database is closed`; closing twice throws the same error.
|
|
42
|
+
|
|
43
|
+
```js
|
|
44
|
+
const db = Database.open("./data");
|
|
45
|
+
db.query("type T { required id: int }");
|
|
46
|
+
db.close(); // deterministic flush + lock release
|
|
47
|
+
|
|
48
|
+
Database.open("./data"); // now free to reopen (same or another process)
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Closing is optional — dropping the last reference lets the garbage collector
|
|
52
|
+
run the same cleanup — but Node does not guarantee *when* a finalizer runs, so
|
|
53
|
+
call `close()` when you need the lock or the final `"normal"`-mode commits
|
|
54
|
+
flushed at a known point.
|
|
55
|
+
|
|
56
|
+
`applyRetainedUnits` is the native adapter used by `@zvndev/powdb-sync` after a
|
|
57
|
+
replica has been restored from a sync bootstrap. It expects the database
|
|
58
|
+
identity and format metadata from the primary plus the contiguous retained
|
|
59
|
+
units returned by `syncPull(...)`. `databaseId` can be either a 32-character
|
|
60
|
+
hex string or a 16-byte `Uint8Array`, matching the `@zvndev/powdb-sync`
|
|
61
|
+
adapter contract. Retained unit `data` accepts `Uint8Array` or `Buffer` bytes:
|
|
62
|
+
|
|
63
|
+
```js
|
|
64
|
+
const result = db.applyRetainedUnits({
|
|
65
|
+
sinceLsn: 42n,
|
|
66
|
+
databaseId: "00112233445566778899aabbccddeeff",
|
|
67
|
+
primaryGeneration: 1n,
|
|
68
|
+
walFormatVersion: 1,
|
|
69
|
+
catalogVersion: 5,
|
|
70
|
+
segmentFormatVersion: 1,
|
|
71
|
+
units: pull.units,
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
console.log(result.throughLsn, result.unitsApplied);
|
|
75
|
+
```
|
|
28
76
|
|
|
29
77
|
## Write performance / durability
|
|
30
78
|
|
|
@@ -63,6 +111,20 @@ type QueryResult =
|
|
|
63
111
|
|
|
64
112
|
Same engine, two front doors.
|
|
65
113
|
|
|
114
|
+
## Supported platforms
|
|
115
|
+
|
|
116
|
+
Prebuilt native binaries ship for:
|
|
117
|
+
|
|
118
|
+
| Platform | Target triple |
|
|
119
|
+
| --- | --- |
|
|
120
|
+
| macOS Apple Silicon | `aarch64-apple-darwin` |
|
|
121
|
+
| Linux x64 (glibc) | `x86_64-unknown-linux-gnu` |
|
|
122
|
+
| Linux arm64 (glibc) | `aarch64-unknown-linux-gnu` |
|
|
123
|
+
|
|
124
|
+
There is no source fallback, so `require()` throws a load error on any other
|
|
125
|
+
platform (Windows, Intel macOS, musl/Alpine). Use the networked
|
|
126
|
+
[`@zvndev/powdb-client`](https://github.com/ZVN-DEV/powdb) there instead.
|
|
127
|
+
|
|
66
128
|
## Safety
|
|
67
129
|
|
|
68
130
|
A query that panics is caught at the boundary and surfaced as a thrown JS error
|
package/index.d.ts
CHANGED
|
@@ -2,11 +2,15 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/** An in-process PowDB database. Open it once and reuse the handle. */
|
|
4
4
|
export declare class Database {
|
|
5
|
-
/**
|
|
5
|
+
/**
|
|
6
|
+
* Open (or create) a database at `dir`. No server is started. Throws if
|
|
7
|
+
* the same directory is already open elsewhere in this process.
|
|
8
|
+
*/
|
|
6
9
|
static open(dir: string): Database
|
|
7
10
|
/**
|
|
8
11
|
* Open (or create) a database at `dir` with an explicit per-query memory
|
|
9
|
-
* budget in bytes (caps sort/join/GROUP BY materialization).
|
|
12
|
+
* budget in bytes (caps sort/join/GROUP BY materialization). Throws if the
|
|
13
|
+
* same directory is already open elsewhere in this process.
|
|
10
14
|
*/
|
|
11
15
|
static openWithMemoryLimit(dir: string, limitBytes: number): Database
|
|
12
16
|
/**
|
|
@@ -22,8 +26,37 @@ export declare class Database {
|
|
|
22
26
|
querySql(sql: string): QueryResultJs
|
|
23
27
|
/** Run a read-only PowQL statement. Errors if it would mutate. */
|
|
24
28
|
queryReadonly(powql: string): QueryResultJs
|
|
25
|
-
/**
|
|
29
|
+
/** Apply one already-pulled retained-unit chunk to this embedded replica. */
|
|
30
|
+
applyRetainedUnits(request: ApplyRetainedUnitsRequestJs): ApplyRetainedUnitsResultJs
|
|
31
|
+
/**
|
|
32
|
+
* Whether a previous call panicked and poisoned the handle (reopen needed).
|
|
33
|
+
* A closed handle reports `false`.
|
|
34
|
+
*/
|
|
26
35
|
isPoisoned(): boolean
|
|
36
|
+
/**
|
|
37
|
+
* Close the database: flush and checkpoint (unless poisoned), then release
|
|
38
|
+
* the data-directory lock so another process — or another handle in this
|
|
39
|
+
* one — can open it. Every later call throws `database is closed`. Calling
|
|
40
|
+
* `close()` on an already-closed handle throws the same error.
|
|
41
|
+
*/
|
|
42
|
+
close(): void
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/** Request shape consumed by `Database.applyRetainedUnits(...)`. */
|
|
46
|
+
export interface ApplyRetainedUnitsRequestJs {
|
|
47
|
+
sinceLsn: bigint
|
|
48
|
+
databaseId: string | Uint8Array
|
|
49
|
+
primaryGeneration: bigint
|
|
50
|
+
walFormatVersion: number
|
|
51
|
+
catalogVersion: number
|
|
52
|
+
segmentFormatVersion: number
|
|
53
|
+
units: Array<RetainedUnitJs>
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/** Summary returned by `Database.applyRetainedUnits(...)`. */
|
|
57
|
+
export interface ApplyRetainedUnitsResultJs {
|
|
58
|
+
throughLsn: bigint
|
|
59
|
+
unitsApplied: number
|
|
27
60
|
}
|
|
28
61
|
|
|
29
62
|
/**
|
|
@@ -42,3 +75,11 @@ export interface QueryResultJs {
|
|
|
42
75
|
affected?: bigint
|
|
43
76
|
message?: string
|
|
44
77
|
}
|
|
78
|
+
|
|
79
|
+
/** One retained unit from `@zvndev/powdb-client`'s `syncPull(...)` result. */
|
|
80
|
+
export interface RetainedUnitJs {
|
|
81
|
+
txId: bigint
|
|
82
|
+
recordType: number
|
|
83
|
+
lsn: bigint
|
|
84
|
+
data: Uint8Array | Buffer
|
|
85
|
+
}
|
package/index.js
CHANGED
|
@@ -77,8 +77,8 @@ function requireNative() {
|
|
|
77
77
|
try {
|
|
78
78
|
const binding = require('@zvndev/powdb-embedded-android-arm64')
|
|
79
79
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-android-arm64/package.json').version
|
|
80
|
-
if (bindingPackageVersion !== '0.
|
|
81
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
80
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
81
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
82
82
|
}
|
|
83
83
|
return binding
|
|
84
84
|
} catch (e) {
|
|
@@ -93,8 +93,8 @@ function requireNative() {
|
|
|
93
93
|
try {
|
|
94
94
|
const binding = require('@zvndev/powdb-embedded-android-arm-eabi')
|
|
95
95
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-android-arm-eabi/package.json').version
|
|
96
|
-
if (bindingPackageVersion !== '0.
|
|
97
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
96
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
97
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
98
98
|
}
|
|
99
99
|
return binding
|
|
100
100
|
} catch (e) {
|
|
@@ -114,8 +114,8 @@ function requireNative() {
|
|
|
114
114
|
try {
|
|
115
115
|
const binding = require('@zvndev/powdb-embedded-win32-x64-gnu')
|
|
116
116
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-win32-x64-gnu/package.json').version
|
|
117
|
-
if (bindingPackageVersion !== '0.
|
|
118
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
117
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
118
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
119
119
|
}
|
|
120
120
|
return binding
|
|
121
121
|
} catch (e) {
|
|
@@ -130,8 +130,8 @@ function requireNative() {
|
|
|
130
130
|
try {
|
|
131
131
|
const binding = require('@zvndev/powdb-embedded-win32-x64-msvc')
|
|
132
132
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-win32-x64-msvc/package.json').version
|
|
133
|
-
if (bindingPackageVersion !== '0.
|
|
134
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
133
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
134
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
135
135
|
}
|
|
136
136
|
return binding
|
|
137
137
|
} catch (e) {
|
|
@@ -147,8 +147,8 @@ function requireNative() {
|
|
|
147
147
|
try {
|
|
148
148
|
const binding = require('@zvndev/powdb-embedded-win32-ia32-msvc')
|
|
149
149
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-win32-ia32-msvc/package.json').version
|
|
150
|
-
if (bindingPackageVersion !== '0.
|
|
151
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
150
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
151
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
152
152
|
}
|
|
153
153
|
return binding
|
|
154
154
|
} catch (e) {
|
|
@@ -163,8 +163,8 @@ function requireNative() {
|
|
|
163
163
|
try {
|
|
164
164
|
const binding = require('@zvndev/powdb-embedded-win32-arm64-msvc')
|
|
165
165
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-win32-arm64-msvc/package.json').version
|
|
166
|
-
if (bindingPackageVersion !== '0.
|
|
167
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
166
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
167
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
168
168
|
}
|
|
169
169
|
return binding
|
|
170
170
|
} catch (e) {
|
|
@@ -182,8 +182,8 @@ function requireNative() {
|
|
|
182
182
|
try {
|
|
183
183
|
const binding = require('@zvndev/powdb-embedded-darwin-universal')
|
|
184
184
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-darwin-universal/package.json').version
|
|
185
|
-
if (bindingPackageVersion !== '0.
|
|
186
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
185
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
186
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
187
187
|
}
|
|
188
188
|
return binding
|
|
189
189
|
} catch (e) {
|
|
@@ -198,8 +198,8 @@ function requireNative() {
|
|
|
198
198
|
try {
|
|
199
199
|
const binding = require('@zvndev/powdb-embedded-darwin-x64')
|
|
200
200
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-darwin-x64/package.json').version
|
|
201
|
-
if (bindingPackageVersion !== '0.
|
|
202
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
201
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
202
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
203
203
|
}
|
|
204
204
|
return binding
|
|
205
205
|
} catch (e) {
|
|
@@ -214,8 +214,8 @@ function requireNative() {
|
|
|
214
214
|
try {
|
|
215
215
|
const binding = require('@zvndev/powdb-embedded-darwin-arm64')
|
|
216
216
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-darwin-arm64/package.json').version
|
|
217
|
-
if (bindingPackageVersion !== '0.
|
|
218
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
217
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
218
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
219
219
|
}
|
|
220
220
|
return binding
|
|
221
221
|
} catch (e) {
|
|
@@ -234,8 +234,8 @@ function requireNative() {
|
|
|
234
234
|
try {
|
|
235
235
|
const binding = require('@zvndev/powdb-embedded-freebsd-x64')
|
|
236
236
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-freebsd-x64/package.json').version
|
|
237
|
-
if (bindingPackageVersion !== '0.
|
|
238
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
237
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
238
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
239
239
|
}
|
|
240
240
|
return binding
|
|
241
241
|
} catch (e) {
|
|
@@ -250,8 +250,8 @@ function requireNative() {
|
|
|
250
250
|
try {
|
|
251
251
|
const binding = require('@zvndev/powdb-embedded-freebsd-arm64')
|
|
252
252
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-freebsd-arm64/package.json').version
|
|
253
|
-
if (bindingPackageVersion !== '0.
|
|
254
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
253
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
254
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
255
255
|
}
|
|
256
256
|
return binding
|
|
257
257
|
} catch (e) {
|
|
@@ -271,8 +271,8 @@ function requireNative() {
|
|
|
271
271
|
try {
|
|
272
272
|
const binding = require('@zvndev/powdb-embedded-linux-x64-musl')
|
|
273
273
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-x64-musl/package.json').version
|
|
274
|
-
if (bindingPackageVersion !== '0.
|
|
275
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
274
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
275
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
276
276
|
}
|
|
277
277
|
return binding
|
|
278
278
|
} catch (e) {
|
|
@@ -287,8 +287,8 @@ function requireNative() {
|
|
|
287
287
|
try {
|
|
288
288
|
const binding = require('@zvndev/powdb-embedded-linux-x64-gnu')
|
|
289
289
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-x64-gnu/package.json').version
|
|
290
|
-
if (bindingPackageVersion !== '0.
|
|
291
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
290
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
291
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
292
292
|
}
|
|
293
293
|
return binding
|
|
294
294
|
} catch (e) {
|
|
@@ -305,8 +305,8 @@ function requireNative() {
|
|
|
305
305
|
try {
|
|
306
306
|
const binding = require('@zvndev/powdb-embedded-linux-arm64-musl')
|
|
307
307
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-arm64-musl/package.json').version
|
|
308
|
-
if (bindingPackageVersion !== '0.
|
|
309
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
308
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
309
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
310
310
|
}
|
|
311
311
|
return binding
|
|
312
312
|
} catch (e) {
|
|
@@ -321,8 +321,8 @@ function requireNative() {
|
|
|
321
321
|
try {
|
|
322
322
|
const binding = require('@zvndev/powdb-embedded-linux-arm64-gnu')
|
|
323
323
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-arm64-gnu/package.json').version
|
|
324
|
-
if (bindingPackageVersion !== '0.
|
|
325
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
324
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
325
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
326
326
|
}
|
|
327
327
|
return binding
|
|
328
328
|
} catch (e) {
|
|
@@ -339,8 +339,8 @@ function requireNative() {
|
|
|
339
339
|
try {
|
|
340
340
|
const binding = require('@zvndev/powdb-embedded-linux-arm-musleabihf')
|
|
341
341
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-arm-musleabihf/package.json').version
|
|
342
|
-
if (bindingPackageVersion !== '0.
|
|
343
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
342
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
343
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
344
344
|
}
|
|
345
345
|
return binding
|
|
346
346
|
} catch (e) {
|
|
@@ -355,8 +355,8 @@ function requireNative() {
|
|
|
355
355
|
try {
|
|
356
356
|
const binding = require('@zvndev/powdb-embedded-linux-arm-gnueabihf')
|
|
357
357
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-arm-gnueabihf/package.json').version
|
|
358
|
-
if (bindingPackageVersion !== '0.
|
|
359
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
358
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
359
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
360
360
|
}
|
|
361
361
|
return binding
|
|
362
362
|
} catch (e) {
|
|
@@ -373,8 +373,8 @@ function requireNative() {
|
|
|
373
373
|
try {
|
|
374
374
|
const binding = require('@zvndev/powdb-embedded-linux-loong64-musl')
|
|
375
375
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-loong64-musl/package.json').version
|
|
376
|
-
if (bindingPackageVersion !== '0.
|
|
377
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
376
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
377
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
378
378
|
}
|
|
379
379
|
return binding
|
|
380
380
|
} catch (e) {
|
|
@@ -389,8 +389,8 @@ function requireNative() {
|
|
|
389
389
|
try {
|
|
390
390
|
const binding = require('@zvndev/powdb-embedded-linux-loong64-gnu')
|
|
391
391
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-loong64-gnu/package.json').version
|
|
392
|
-
if (bindingPackageVersion !== '0.
|
|
393
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
392
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
393
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
394
394
|
}
|
|
395
395
|
return binding
|
|
396
396
|
} catch (e) {
|
|
@@ -407,8 +407,8 @@ function requireNative() {
|
|
|
407
407
|
try {
|
|
408
408
|
const binding = require('@zvndev/powdb-embedded-linux-riscv64-musl')
|
|
409
409
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-riscv64-musl/package.json').version
|
|
410
|
-
if (bindingPackageVersion !== '0.
|
|
411
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
410
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
411
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
412
412
|
}
|
|
413
413
|
return binding
|
|
414
414
|
} catch (e) {
|
|
@@ -423,8 +423,8 @@ function requireNative() {
|
|
|
423
423
|
try {
|
|
424
424
|
const binding = require('@zvndev/powdb-embedded-linux-riscv64-gnu')
|
|
425
425
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-riscv64-gnu/package.json').version
|
|
426
|
-
if (bindingPackageVersion !== '0.
|
|
427
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
426
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
427
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
428
428
|
}
|
|
429
429
|
return binding
|
|
430
430
|
} catch (e) {
|
|
@@ -440,8 +440,8 @@ function requireNative() {
|
|
|
440
440
|
try {
|
|
441
441
|
const binding = require('@zvndev/powdb-embedded-linux-ppc64-gnu')
|
|
442
442
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-ppc64-gnu/package.json').version
|
|
443
|
-
if (bindingPackageVersion !== '0.
|
|
444
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
443
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
444
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
445
445
|
}
|
|
446
446
|
return binding
|
|
447
447
|
} catch (e) {
|
|
@@ -456,8 +456,8 @@ function requireNative() {
|
|
|
456
456
|
try {
|
|
457
457
|
const binding = require('@zvndev/powdb-embedded-linux-s390x-gnu')
|
|
458
458
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-linux-s390x-gnu/package.json').version
|
|
459
|
-
if (bindingPackageVersion !== '0.
|
|
460
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
459
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
460
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
461
461
|
}
|
|
462
462
|
return binding
|
|
463
463
|
} catch (e) {
|
|
@@ -476,8 +476,8 @@ function requireNative() {
|
|
|
476
476
|
try {
|
|
477
477
|
const binding = require('@zvndev/powdb-embedded-openharmony-arm64')
|
|
478
478
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-openharmony-arm64/package.json').version
|
|
479
|
-
if (bindingPackageVersion !== '0.
|
|
480
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
479
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
480
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
481
481
|
}
|
|
482
482
|
return binding
|
|
483
483
|
} catch (e) {
|
|
@@ -492,8 +492,8 @@ function requireNative() {
|
|
|
492
492
|
try {
|
|
493
493
|
const binding = require('@zvndev/powdb-embedded-openharmony-x64')
|
|
494
494
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-openharmony-x64/package.json').version
|
|
495
|
-
if (bindingPackageVersion !== '0.
|
|
496
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
495
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
496
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
497
497
|
}
|
|
498
498
|
return binding
|
|
499
499
|
} catch (e) {
|
|
@@ -508,8 +508,8 @@ function requireNative() {
|
|
|
508
508
|
try {
|
|
509
509
|
const binding = require('@zvndev/powdb-embedded-openharmony-arm')
|
|
510
510
|
const bindingPackageVersion = require('@zvndev/powdb-embedded-openharmony-arm/package.json').version
|
|
511
|
-
if (bindingPackageVersion !== '0.
|
|
512
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
511
|
+
if (bindingPackageVersion !== '0.8.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
512
|
+
throw new Error(`Native binding package version mismatch, expected 0.8.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
513
513
|
}
|
|
514
514
|
return binding
|
|
515
515
|
} catch (e) {
|
package/package.json
CHANGED
|
@@ -1,29 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zvndev/powdb-embedded",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Embedded PowDB — the in-process database engine for Node (no server, no socket). The SQLite-shaped front door to PowDB.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/ZVN-DEV/powdb.git",
|
|
9
9
|
"directory": "bindings/node"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://
|
|
12
|
-
"keywords": [
|
|
11
|
+
"homepage": "https://github.com/ZVN-DEV/powdb#readme",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"database",
|
|
14
|
+
"powdb",
|
|
15
|
+
"embedded",
|
|
16
|
+
"sqlite",
|
|
17
|
+
"local-first",
|
|
18
|
+
"napi"
|
|
19
|
+
],
|
|
13
20
|
"main": "index.js",
|
|
14
21
|
"types": "index.d.ts",
|
|
15
|
-
"files": [
|
|
22
|
+
"files": [
|
|
23
|
+
"index.js",
|
|
24
|
+
"index.d.ts",
|
|
25
|
+
"*.node"
|
|
26
|
+
],
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
16
30
|
"engines": {
|
|
17
31
|
"node": ">= 18"
|
|
18
32
|
},
|
|
19
33
|
"napi": {
|
|
20
34
|
"binaryName": "powdb-embedded",
|
|
21
35
|
"targets": [
|
|
22
|
-
"x86_64-apple-darwin",
|
|
23
36
|
"aarch64-apple-darwin",
|
|
24
37
|
"x86_64-unknown-linux-gnu",
|
|
25
|
-
"aarch64-unknown-linux-gnu"
|
|
26
|
-
"x86_64-pc-windows-msvc"
|
|
38
|
+
"aarch64-unknown-linux-gnu"
|
|
27
39
|
]
|
|
28
40
|
},
|
|
29
41
|
"scripts": {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|