1.0.8 • Published 3 years ago

djsonb v1.0.8

Weekly downloads
1
License
MIT
Repository
-
Last release
3 years ago

Usage

  • A JSON based Database for tests and small applications
const djsonb = require('djsonb')
const db = djsonb.connect()

// Create 
db.create({"name":"test", "age": 1})

// Find by id
db.findById(1606450135293)

// delete by id
db.delete(1606450135293)

// update
async function ... {
    const user = await db.findById(1606450135293)
    user.name = "test2"
    db.update(user)
}

// Reset Database
db.reset()
1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago