hyperiondb-client-linux-x64-musl 0.1.0
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 +3 -0
- package/hyperiondb-client.linux-x64-musl.node +0 -0
- package/package.json +30 -0
package/README.md
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hyperiondb-client-linux-x64-musl",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"cpu": [
|
|
5
|
+
"x64"
|
|
6
|
+
],
|
|
7
|
+
"main": "hyperiondb-client.linux-x64-musl.node",
|
|
8
|
+
"files": [
|
|
9
|
+
"hyperiondb-client.linux-x64-musl.node"
|
|
10
|
+
],
|
|
11
|
+
"description": "Native Node.js client for a HyperionDb / pg_replica Postgres cluster — a primary-following connection pool over the N nodes.",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"postgres",
|
|
14
|
+
"raft",
|
|
15
|
+
"node",
|
|
16
|
+
"failover",
|
|
17
|
+
"replication"
|
|
18
|
+
],
|
|
19
|
+
"author": "Tadas Talaikis <info@nordlet.com>",
|
|
20
|
+
"license": "GPL-3.0-or-later",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">= v24"
|
|
23
|
+
},
|
|
24
|
+
"os": [
|
|
25
|
+
"linux"
|
|
26
|
+
],
|
|
27
|
+
"libc": [
|
|
28
|
+
"musl"
|
|
29
|
+
]
|
|
30
|
+
}
|