A dirt simple HTTP key value store, with a fancy UI.
-
Install the gem:
$ gem install skvs
-
Start the server:
$ skvs
-
Navigate the the UI:
function skvs_pull(){
echo $(curl -s -o - "http://localhost:7654/$1")
}
function skvs_push(){
local key
key=$1
shift
curl -XPUT --data-binary "$*" -s -o /dev/null "http://localhost:7654/$key"
}