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.
Files changed (2) hide show
  1. package/README.md +10 -10
  2. 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
- [![NPM Version](https://img.shields.io/npm/v/gdb-p2p.svg?style=for-the-badge)](https://www.npmjs.org/package/gdb-p2p)
10
- [![NPM License](https://img.shields.io/npm/l/gdb-p2p.svg?style=for-the-badge)](https://github.com/estebanrfp/gdb/blob/main/LICENSE)
9
+ [![NPM Version](https://img.shields.io/npm/v/genosdb.svg?style=for-the-badge)](https://www.npmjs.org/package/genosdb)
10
+ [![NPM License](https://img.shields.io/npm/l/genosdb.svg?style=for-the-badge)](https://github.com/estebanrfp/gdb/blob/main/LICENSE)
11
11
 
12
12
 
13
- ![Downloads on NPM](https://img.shields.io/npm/dw/gdb-p2p)
14
- [![](https://data.jsdelivr.com/v1/package/npm/gdb-p2p/badge)](https://www.jsdelivr.com/package/npm/gdb-p2p)
13
+ ![Downloads on NPM](https://img.shields.io/npm/dw/genosdb)
14
+ [![](https://data.jsdelivr.com/v1/package/npm/genosdb/badge)](https://www.jsdelivr.com/package/npm/genosdb)
15
15
 
16
16
  ![Project Status](https://img.shields.io/badge/state-development-green)
17
17
 
18
18
  <!-- [![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/estebanrfp/gdb&build=dist) -->
19
19
 
20
- ![NPM Unpacked Size (with version)](https://img.shields.io/npm/unpacked-size/gdb-p2p/latest)
20
+ ![NPM Unpacked Size (with version)](https://img.shields.io/npm/unpacked-size/genosdb/latest)
21
21
 
22
- ![npm package minimized gzipped size](https://img.shields.io/bundlejs/size/gdb-p2p)
22
+ ![npm package minimized gzipped size](https://img.shields.io/bundlejs/size/genosdb)
23
23
 
24
24
  [![Liberapay receiving](https://img.shields.io/liberapay/receives/estebanrfp.svg?logo=liberapay)](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 gdb-p2p
98
+ npm install genosdb
99
99
  ```
100
100
 
101
101
  ```javascript
102
- import { GDB } from "gdb-p2p"
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/gdb-p2p/+esm"
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/gdb-p2p), an open-source real-time graph database built entirely with modern vanilla JavaScript.
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
  [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Festebanrfp%2Fgdb.svg?type=shield&issueType=security)](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",
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",