ejdb

Embeddable JSON database engine C11 library for applications

brewmacoslinux
Try with needOr install directly
Source

About

Embeddable JSON Database engine C11 library

Commands

ejdb

Examples

Create a new database and insert a JSON document$ ejdb create mydb.db && echo '{"name":"John","age":30}' | ejdb insert mydb.db mycoll
Query documents from a collection$ ejdb query mydb.db mycoll '@.age > 25'
Display database information and statistics$ ejdb info mydb.db