rsql-js-client
v1.0.2
Published
Official JavaScript client for RSQL (Rimal SQL).
Readme
rsql-js-client
Official JS client for RSQL (Rimal SQL) — a structured query language for remote querying over raw TCP sockets.
Features
- Built for RSQL (Rimal SQL)
- Lightweight and dependency-free
- Promise-based API
- Parses JSON responses automatically
- Handles timeouts and connection errors gracefully
Installation
npm install rsql-js-clientUsage
const RSQLClient = require('./rsql-client');
const c = new RSQLClient();
c.query('users.select(name,age).where(age > 18)').then(console.log).catch(console.error);