kvbits
Version:
A persistent key-value database for Node.js with Write-Ahead Logging, TTL, and compaction.
17 lines (15 loc) • 380 B
JavaScript
/**
* kvbits - A lightning fast and ultra lightweight persistent key-value database for Node.js
* Features:
* - Automatic persistence
* - Optimized for high throughput
* - Zero dependencies
* - TTL support (time-to-live for entries)
*/
// src/main.js
const KV = require('./core/kv-core');
const AsyncKV = require('./core/async-kv');
module.exports = {
KV,
AsyncKV,
};