An open API service indexing awesome lists of open source software.

https://github.com/avraammavridis/worlds-smallest-db

World's smallest and simplest database
https://github.com/avraammavridis/worlds-smallest-db

bash database key-value simpest-database

Last synced: 6 months ago
JSON representation

World's smallest and simplest database

Awesome Lists containing this project

README

          

# worlds-smallest-db
World's smallest and simplest database

Simplest key-value store implemented in bash.

```bash
db_set name Jon
db_set surname Smith
db_get name # Jon

db_set author { name: 'Alex', surname: 'Johnson' }
db_get author # { name: 'Alex', surname: 'Johnson' }
```