Modern database explorer for Cassandra & ScyllaDB with dual TUI and Web interfaces.
- Terminal Interface (TUI) - Stable, production-ready, keyboard-driven
- Web UI - ✅ Feature-complete, modern React interface
- Single binary with embedded server
- Browse keyspaces, tables, and data
- Filter with CQL WHERE clauses
- Cursor-based pagination
- Light/Dark/System themes
- Real-time data exploration
curl -fsSL https://raw.githubusercontent.com/KashifKhn/kassie/main/install.sh | shDownload the latest release for your platform from GitHub Releases.
go install github.com/KashifKhn/kassie@latest# Homebrew tap planned for future release
brew tap KashifKhn/kassie
brew install kassieSee installation docs for more options.
Keep Kassie up-to-date with the built-in upgrade command:
kassie upgrade # Upgrade to latest version
kassie upgrade --check # Check for updates only
kassie upgrade --version v0.2.0 # Upgrade to specific versionkassie tui # Launch terminal interface
kassie web # Launch web interface (recommended for GUI users)
kassie server # Run standalone serverCreate ~/.config/kassie/config.json:
{
"profiles": [
{
"name": "local",
"hosts": ["127.0.0.1"],
"port": 9042
}
]
}make setup # Install tools
make proto # Generate gRPC code
make build # Build binary
make test # Run testsMIT