https://github.com/kostya-zero/tana
No-nonsense key-value store for the CLI
https://github.com/kostya-zero/tana
Last synced: 11 months ago
JSON representation
No-nonsense key-value store for the CLI
- Host: GitHub
- URL: https://github.com/kostya-zero/tana
- Owner: kostya-zero
- Created: 2025-08-31T15:23:21.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-09-04T17:51:39.000Z (11 months ago)
- Last Synced: 2025-09-04T19:31:10.538Z (11 months ago)
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tana
Tana is a simple CLI that can store keys and their values.
## Installation
If you have Go installed you can use `go install`:
```bash
go install github.com/kostya-zero/tana
```
Otherwise, download binary from the releases section.
## Usage
```bash
# Add key to store
tana set hello "Hello, world!"
# Get key
tana get hello
# List all keys
tana list
# Update key
tana update hello "Hello, John!"
# Delete key
tana delete hello
```