~/docs/getting-started/installation
DOCUMENTATION
Installation
How to install KiteDB in your project
KiteDB is available for JavaScript/TypeScript (via NAPI), Rust, and Python. Choose your preferred language below.
Install
$
bun add @kitedb/core$
npm install @kitedb/coreRequirements
- JavaScript/TypeScript: Bun 1.0+ or Node.js 16+
- Rust: Stable Rust toolchain
- Python: Python 3.9+
Verify Installation
Create a simple test file to verify the installation works:
test.ts
Run it:
bun run test.ts
# or
npx tsx test.tsNext Steps
Now that KiteDB is installed, head to the Quick Start guide to build your first graph database.