1.0.8 • Published 5 years ago

djsonb v1.0.8

Weekly downloads
1
License
MIT
Repository
-
Last release
5 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

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago