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

https://github.com/czmatyaszero/json-syncdb

Simple database solution for very small projects
https://github.com/czmatyaszero/json-syncdb

database javascript json lightweight

Last synced: over 1 year ago
JSON representation

Simple database solution for very small projects

Awesome Lists containing this project

README

          

# JSON-syncDB
- simple solution for database for very small projects
- works on base of recursive Proxy() watching Object for changes, then changes writes into file

## Examples
### Example of usage
```javascript
const { JSONDB } = require("json-syncdb")
var db = new JSONDB("./data.json")

db.data.users = []
db.data.users.push({name: "arnold", age: 22})
```