1.1.6 • Published 5 years ago
gab.db
Licence
ISC
Version
1.1.6
Deps
2
Size
2 kB
Vulns
1
Weekly
0
What is it?
gab.db is a basic json database, dedicated to discord bots.
How to use
1. First Require the database
const db = require("gab.db")
2. Second Setting your first data in the db
db.set("myFirstData", "Hello world!")
3. Third Get data from the db
const data = db.get("myFirstData")// Get the "Hello world!" seted in the db
console.log(data)