Back to browse
GitHub Repository

Web client for Valkey/Redis databases

9 starsSvelte

kvweb, a Web GUI for Redis/Valkey

by chambored·Mar 9, 2026·1 point·0 comments

AI Analysis

●●SolidSolve My ProblemNiche Gem

pgweb for Redis—all data types, auto-decompression, but addresses a solved problem.

Strengths
  • Genuinely comprehensive: all 8 Redis types with inline editors + geo map view—exceeds pgweb's scope for SQL.
  • Auto-detection and decompression of gzip/zstd values removes manual decode friction; thoughtful UX.
  • Single Go binary + WebSocket live updates via keyspace notifications = production-ready observability.
Weaknesses
  • pgweb, Redis Commander, and RedisInsight already cover this space; no architectural or UX differentiation.
  • Early-stage (2 stars); long-term maintenance and feature parity with established tools uncertain.
Target Audience

Backend engineers managing Redis/Valkey instances without CLI-only workflows

Similar To

pgweb · Redis Commander · RedisInsight

Post Description

Hey HN, over the past couple of months I've been building kvweb which is a web-based GUI for browsing and editing Valkey/Redis databases. I wanted something like pgweb but for Valkey, and when I dug into the existing options they were either desktop apps, looked pretty dated, or were missing features I cared about. redis-cli is great for quick commands but I wanted something visual for exploring unfamiliar databases. It's a Go backend with a Svelte frontend that compiles down to a single binary, so you just point it at any Valkey or Redis instance and open your browser. AGPL licensed.

Each data type has its own editor: strings, hashes, lists, sets, sorted sets, streams, HyperLogLog, and geo with a map view. You can search keys with glob or regex, filter by type, browse them as a tree, and bulk delete. It auto-detects compressed values (gzip, zstd) and decompresses them for display. Changes show up live via WebSocket keyspace notifications, and there's a built-in command console if you need to run something ad-hoc. Screenshots at kvweb.dev

Similar Projects