feat(napi): Provide a new createIndex API in the napi SDK. (#857)

This commit is contained in:
Lei Xu
2024-01-24 17:27:46 -08:00
committed by Weston Pace
parent 7d82e56f76
commit db4a979278
16 changed files with 518 additions and 22 deletions

View File

@@ -1,3 +1,24 @@
# (New) LanceDB NodeJS SDK
It will replace the NodeJS SDK when it is ready.
## Development
```sh
npm run build
npm t
```
Generating docs
```
npm run docs
cd ../docs
# Asssume the virtual environment was created
# python3 -m venv venv
# pip install -r requirements.txt
. ./venv/bin/activate
mkdocs build
```