1.0.5 • Published 2 years ago

flaiscode.db v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Welcome to flaiscode.db 👋

Version License: MIT

flaiscode database

Author

👤 flaiscode ( nix and ahmet )

Install

npm install flaiscode.db

Example

const flaiscodeDatabase = require('flaiscode.db');
const db = new flaiscodeDatabase({ file: 'database.json' });

db.set('hello', 'world'); // world
db.delete('hello') // true

db.push('fruits', 'orange') // [ "orange" ]
db.push('fruits', 'apple') // [ "orange", "apple" ]
db.remove('fruits', 'orange') // [ "apple" ]

db.add('level', 10) // 10
db.subtract('level', 8) // 2

db.deleteAll() // true

db.all() // { ... }

Show your support

Give a ⭐️ if this project helped you!

📝 License

This project is MIT licensed.

Last Updated

08/07/2022

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago