https://github.com/memgraph/jsmgclient
https://github.com/memgraph/jsmgclient
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/memgraph/jsmgclient
- Owner: memgraph
- License: apache-2.0
- Created: 2022-01-19T08:40:52.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-19T08:29:48.000Z (almost 2 years ago)
- Last Synced: 2025-07-26T17:21:45.679Z (9 months ago)
- Language: JavaScript
- Size: 153 KB
- Stars: 6
- Watchers: 7
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# jsmgclient
Welcome to Memgraph's JavaSript WASM based client adapter.
## How to build
Currently, you can only build jsmgclient on Linux via the following commands:
```
git submodule update --init --recursive
cd mgclient
mkdir build && cd build
cmake .. -DWASM=ON
make -j${number_of_cores}
```
The result JavaScript/WASM files can be consumed by any platform.
## How to run the tests
```
npm install
npm run test-unit
npm run test-e2e-all
```