Node.js Client Library
The Geode Node.js client delivers a TypeScript-first API for QUIC + TLS 1.3 access to Geode. It includes connection pooling, query builders, prepared statements, and transactional helpers designed for production JavaScript and TypeScript services.
Install
npm install @geodedb/client
Quick Start
import { createClient } from '@geodedb/client';
const client = await createClient('quic://localhost:3141');
const rows = await client.queryAll('RETURN 1 AS ok');
console.log(rows[0].ok);