genosdb 0.2.3 → 0.2.4
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 +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,20 +6,20 @@ A lightweight, decentralized graph database designed for modern web applications
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
[](https://www.npmjs.org/package/genosdb)
|
|
10
|
+
[](https://github.com/estebanrfp/gdb/blob/main/LICENSE)
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-

|
|
14
|
+
[](https://www.jsdelivr.com/package/npm/genosdb)
|
|
15
15
|
|
|
16
16
|

|
|
17
17
|
|
|
18
18
|
<!-- [](https://app.netlify.com/start/deploy?repository=https://github.com/estebanrfp/gdb&build=dist) -->
|
|
19
19
|
|
|
20
|
-
](https://img.shields.io/npm/unpacked-size/genosdb/latest)
|
|
21
21
|
|
|
22
|
-

|
|
23
23
|
|
|
24
24
|
[](https://liberapay.com/estebanrfp/donate)
|
|
25
25
|
|
|
@@ -95,18 +95,18 @@ gdb‑p2p has been rigorously tested with our common usage examples in such envi
|
|
|
95
95
|
### 1. Via NPM
|
|
96
96
|
|
|
97
97
|
```bash
|
|
98
|
-
npm install
|
|
98
|
+
npm install genosdb
|
|
99
99
|
```
|
|
100
100
|
|
|
101
101
|
```javascript
|
|
102
|
-
import { GDB } from "
|
|
102
|
+
import { GDB } from "genosdb"
|
|
103
103
|
```
|
|
104
104
|
|
|
105
105
|
### 2. Direct use in browser from a CDN
|
|
106
106
|
|
|
107
107
|
```html
|
|
108
108
|
<script type="module">
|
|
109
|
-
import { GDB } from "https://cdn.jsdelivr.net/npm/
|
|
109
|
+
import { GDB } from "https://cdn.jsdelivr.net/npm/genosdb/+esm"
|
|
110
110
|
</script>
|
|
111
111
|
```
|
|
112
112
|
|
|
@@ -197,7 +197,7 @@ This repository provides minified builds of GenosDB (GDB), a decentralized P2P g
|
|
|
197
197
|
|
|
198
198
|
## Author
|
|
199
199
|
|
|
200
|
-
[Esteban Fuster Pozzi (@estebanrfp)](https://estebanrfp.com) — Full Stack JavaScript Developer and creator of [GenosDB (GDB)](https://www.npmjs.com/package/
|
|
200
|
+
[Esteban Fuster Pozzi (@estebanrfp)](https://estebanrfp.com) — Full Stack JavaScript Developer and creator of [GenosDB (GDB)](https://www.npmjs.com/package/genosdb), an open-source real-time graph database built entirely with modern vanilla JavaScript.
|
|
201
201
|
|
|
202
202
|
[](https://app.fossa.com/projects/git%2Bgithub.com%2Festebanrfp%2Fgdb?ref=badge_shield&issueType=security)
|
|
203
203
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genosdb",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description2": "GenosDB (GDB): distributed graph database in real-time, peer-to-peer, scalable storage - efficient querying of complex relationships.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|