Very basic Key-Value store with REST API and UI based on BoldDB
A simple build script which pulls the dependency and builds the binary
cd $GOPATH/src/github.com/vigorcrust/simple-kvdb
go run build.gocurl -X GET http://localhost:8081/api/
[{"bucket":"bucket1"}, {"bucket":"bucket2"}]curl -X POST http://localhost:8081/api/bucket3curl -X DELETE http://localhost:8081/api/bucket3curl -X GET http://localhost:8081/api/bucket1
[{"key":"key1","value":"value1"},{"key":"key2","value":"value2"}]curl -X POST http://localhost:8081/api/bucket1/key1/value1curl -X DELETE http://localhost:8081/api/bucket1/key1curl -X GET http://localhost:8081/api/bucket1/key1
{"value":"value1"}