@grafeo-db/wasm 0.1.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 +29 -0
- package/grafeo_wasm.d.ts +5 -0
- package/grafeo_wasm.js +5 -0
- package/package.json +33 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @grafeo-db/wasm
|
|
2
|
+
|
|
3
|
+
WebAssembly bindings for [Grafeo](https://grafeo.dev) - a high-performance, pure-Rust, embeddable graph database.
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
**Pre-alpha** - The WebAssembly bindings are under development.
|
|
8
|
+
|
|
9
|
+
For production use, please use the [Python bindings](https://pypi.org/project/grafeo/) which are fully functional.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @grafeo-db/wasm
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Planned Features
|
|
18
|
+
|
|
19
|
+
- Browser and Node.js compatible WebAssembly module
|
|
20
|
+
- Full TypeScript type definitions
|
|
21
|
+
- Support for GQL, Cypher, SPARQL, and GraphQL query languages
|
|
22
|
+
- In-memory graph database in the browser
|
|
23
|
+
- Persistence via IndexedDB or OPFS
|
|
24
|
+
|
|
25
|
+
## Links
|
|
26
|
+
|
|
27
|
+
- [Documentation](https://grafeo.dev)
|
|
28
|
+
- [GitHub](https://github.com/GrafeoDB/grafeo)
|
|
29
|
+
- [Python Package](https://pypi.org/project/grafeo/)
|
package/grafeo_wasm.d.ts
ADDED
package/grafeo_wasm.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@grafeo-db/wasm",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "WebAssembly bindings for Grafeo - a high-performance embeddable graph database",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"graph",
|
|
7
|
+
"database",
|
|
8
|
+
"gql",
|
|
9
|
+
"cypher",
|
|
10
|
+
"sparql",
|
|
11
|
+
"knowledge-graph",
|
|
12
|
+
"wasm",
|
|
13
|
+
"webassembly"
|
|
14
|
+
],
|
|
15
|
+
"author": "StevenBtw",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/GrafeoDB/grafeo.git",
|
|
20
|
+
"directory": "crates/bindings/wasm"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://grafeo.dev",
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/GrafeoDB/grafeo/issues"
|
|
25
|
+
},
|
|
26
|
+
"main": "grafeo_wasm.js",
|
|
27
|
+
"types": "grafeo_wasm.d.ts",
|
|
28
|
+
"files": [
|
|
29
|
+
"grafeo_wasm.js",
|
|
30
|
+
"grafeo_wasm.d.ts",
|
|
31
|
+
"grafeo_wasm_bg.wasm"
|
|
32
|
+
]
|
|
33
|
+
}
|