genosdb 0.7.0 → 0.7.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 +6 -2
- package/dist/gdb.min.js +1 -1
- package/dist/gdb.min.js.gz +0 -0
- package/dist/index.js +1 -1
- package/dist/index.js.gz +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,19 +104,23 @@ npm install genosdb
|
|
|
104
104
|
```
|
|
105
105
|
|
|
106
106
|
```javascript
|
|
107
|
-
import {
|
|
107
|
+
import { gdb } from "genosdb"
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
### 2. Direct use in browser from a CDN
|
|
111
111
|
|
|
112
112
|
```html
|
|
113
113
|
<script type="module">
|
|
114
|
-
import {
|
|
114
|
+
import { gdb } from "https://cdn.jsdelivr.net/npm/genosdb@latest/dist/index.min.js"
|
|
115
115
|
</script>
|
|
116
116
|
```
|
|
117
117
|
|
|
118
118
|
## Documentation
|
|
119
119
|
|
|
120
|
+
Our formal API reference and technical guides are located in the [`/docs` folder](https://github.com/estebanrfp/gdb/tree/main/docs) of this repository.
|
|
121
|
+
|
|
122
|
+
For community-driven content, tutorials, and live examples, please visit our [GitHub Wiki](https://github.com/estebanrfp/gdb/wiki).
|
|
123
|
+
|
|
120
124
|
For detailed documentation, visit our [GitHub Wiki](https://github.com/estebanrfp/gdb/wiki).
|
|
121
125
|
|
|
122
126
|
For interactive, AI-assisted GenosDB documentation:
|