2.0.15 • Published 2 months ago

dynamicdb v2.0.15

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 months ago
  • It has two types of data storage, SQLite and BSON.
  • Easy to use and returns responses quickly.
  • High performance and scalability.
$ npm install dynamicdb
const db = require('dynamicdb').sqlite();
const db = require('dynamicdb').bson();

_

// Saving a data
db.insert('person', { name: 'John Doe', age: 28 });

// Getting data
db.get('person.name') // John Doe
db.get('person.age') // 28

// Adding a value
db.add('person.age', 1) // 29

Note: If you want to see more examples, see the documentation for this project.

2.0.15

2 months ago

2.0.14

12 months ago

2.0.0

12 months ago

1.0.4

12 months ago

1.0.3

12 months ago

1.0.2

12 months ago

1.0.1

12 months ago

1.0.0

12 months ago