Quick Start

Get started with NexaDB in under 5 minutes.

1. Start NexaDB Server

Terminal
$nexadb start
✓ Binary Protocol on port 6970 (10x faster!)
✓ JSON API on port 6969 (REST fallback)
✓ Admin UI on port 9999 (Web interface)

2. Choose Your Client

JavaScript/Node.js

npm install nexaclient
View JavaScript Docs →

Python

pip install nexaclient
View Python Docs →

3. Create Your First Document

JavaScript Example
const NexaClient = require('nexaclient');

const db = new NexaClient({
  host: 'localhost',
  port: 6970,
  username: 'root',
  password: 'nexadb123'
});
await db.connect();

// Create a document
const user = await db.create('users', {
  name: 'Alice',
  email: 'alice@example.com',
  age: 28
});

console.log('Created user:', user);