Package Exports
- @nowarajs/kv-store/enums
- @nowarajs/kv-store/ioredis
- @nowarajs/kv-store/memory
- @nowarajs/kv-store/types
Readme
๐๏ธ NowaraJS - kv-store
๐ Table of Contents
๐ Description
KV Store is a flexible key-value store interface library that provides a unified KvStore API allowing custom storage implementations. It includes built-in adapters for Redis (via IoRedis) and in-memory storage by default.
This library is perfect for applications that need to abstract their storage layer, allowing easy switching between different storage backends without changing your application code.
โจ Features
- ๐ Unified Interface: Common API for different storage backends
- ๐พ Memory Store: Built-in in-memory storage with TTL support and automatic cleanup
- ๐ด Redis Support: Redis adapter using IoRedis client
- ๐๏ธ Extensible: Easy to implement custom storage adapters
- โฐ TTL Support: Time-to-live functionality for keys
- ๐ข Atomic Operations: Increment/decrement operations
- ๐ฆ Type-Safe: Full TypeScript support with generics
- ๐งน Auto Cleanup: Automatic expired key cleanup for memory store
๐ง Installation
bun add @nowarajs/kv-store @nowarajs/errorFor Redis support, you'll also need to install IoRedis:
bun add ioredisโ๏ธ Usage
Memory Store
import { MemoryStore } from '@nowarajs/kv-store'
// Create a memory store with default cleanup interval (5 minutes)
const store = new MemoryStore()
// Or with custom cleanup interval (in milliseconds)
const storeWithCustomCleanup = new MemoryStore(60000) // 1 minute
// Basic operations
store.set('user:123', { name: 'John', age: 30 })
const user = store.get<{ name: string; age: number }>('user:123')
// With TTL (time-to-live in seconds)
store.set('session:abc', 'session-data', 3600) // Expires in 1 hour
// Atomic operations
store.set('counter', 0)
store.increment('counter', 5) // Returns 5
store.decrement('counter', 2) // Returns 3
// Key management
store.expire('user:123', 300) // Set expiration to 5 minutes
store.del('user:123') // Delete keyRedis Store (IoRedis)
import { IoRedisStore } from '@nowarajs/kv-store'
// Create Redis store
const store = new IoRedisStore({
host: 'localhost',
port: 6379,
// ... other IoRedis options
})
// Connect to Redis
await store.connect()
// Same API as memory store, but async
await store.set('user:123', { name: 'John', age: 30 })
const user = await store.get<{ name: string; age: number }>('user:123')
// With TTL
await store.set('session:abc', 'session-data', 3600)
// Atomic operations
await store.increment('counter', 5)
await store.decrement('counter', 2)
// Close connection when done
await store.close()Custom Store Implementation
import type { KvStore } from '@nowarajs/kv-store'
class MyCustomStore implements KvStore {
public async connect?(): Promise<void> {
// Custom connection logic
}
public async close?(): Promise<void> {
// Custom cleanup logic
}
public get<T = unknown>(key: string): T | null | Promise<T | null> {
// Custom get implementation
}
public set<T = unknown>(key: string, value: T, ttlSec?: number): void | Promise<void> {
// Custom set implementation
}
public increment(key: string, amount = 1): number | Promise<number> {
// Custom increment implementation
}
public decrement(key: string, amount = 1): number | Promise<number> {
// Custom decrement implementation
}
public del(key: string): boolean | Promise<boolean> {
// Custom delete implementation
}
public expire(key: string, ttlSec: number): boolean | Promise<boolean> {
// Custom expiration implementation
}
public exists(key: string): boolean | Promise<boolean> {
// Custom exists check implementation
}
public clear(): void | Promise<void> {
// Custom clear all implementation
}
}๐ API Reference
You can find the complete API reference documentation for kv-store at:
โ๏ธ License
Distributed under the MIT License. See LICENSE for more information.
๐ง Contact
- Mail: nowarajs@pm.me
- Github: Project link