@geodedb/client 1.0.0-alpha.11 → 1.0.0-alpha.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 +7 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -572,13 +572,18 @@ npm run test:integration
|
|
|
572
572
|
|
|
573
573
|
See [CLAUDE.md](./CLAUDE.md) for development guidelines.
|
|
574
574
|
|
|
575
|
-
### Development Setup
|
|
576
|
-
|
|
577
575
|
```bash
|
|
576
|
+
# Clone repository
|
|
578
577
|
git clone https://gitlab.com/devnw/geode/geode-client-nodejs.git
|
|
579
578
|
cd geode-client-nodejs
|
|
579
|
+
|
|
580
|
+
# Install dependencies
|
|
580
581
|
npm install
|
|
582
|
+
|
|
583
|
+
# Run tests
|
|
581
584
|
npm test
|
|
585
|
+
|
|
586
|
+
# Build
|
|
582
587
|
npm run build
|
|
583
588
|
```
|
|
584
589
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geodedb/client",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.2",
|
|
4
4
|
"description": "Node.js client library for Geode graph database (QUIC + TLS 1.3)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"license": "Apache-2.0",
|
|
47
47
|
"repository": {
|
|
48
48
|
"type": "git",
|
|
49
|
-
"url": "
|
|
49
|
+
"url": "https://gitlab.com/devnw/geode/geode-client-nodejs"
|
|
50
50
|
},
|
|
51
51
|
"homepage": "https://gitlab.com/devnw/geode",
|
|
52
52
|
"bugs": {
|