Node.js client for Cloudflare's KV Storage, a globally distributed key-value store with low-latency reads and writes. Version 0.0.9 is the latest; development is active but early. Differentiates by being a community-maintained SDK specifically for Cloudflare KV, unlike the official Workers KV client which is edge-only. Provides both Promise and async/await APIs. Supports bulk operations and TTLs. Not suitable for high-throughput production use yet.
npm install storage-kvNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates instantiation with Cloudflare credentials and basic CRUD operations (put, get, delete) with optional TTL.
Double-check namespace ID from Cloudflare dashboard; use environment variables.
Manually implement pagination using the cursor from list responses.
Use 'KV' class instead.
Split large payloads into chunks or use alternative storage.
Update instantiation to positional arguments.
Verify namespace ID in Cloudflare dashboard and ensure correct accountId.
Switch to KV class: import { KV } from 'storage-kv'.Generate a token with 'Workers KV Storage' edit permissions; set CF_API_TOKEN env var.
No dependency data recorded yet.