β¨ Pegasus DB
Quick Uptime is a powerful module which allows you to Uptime any website
π Features
- π Backup system
- π Simple And Easy To Get Started
- π Super-powerful
- πΈοΈ User Friendly
- and much more!
π Installation
npm install pegasus.db
π Examples
const Database = require('pegasus.db')
const db = new Database.Client();
db.get('key') // fetch something from the db
db.fetch('key') //fetch something from the db
db.set('key', 'nothing') // set something in the db
db.add('key', 1) //add something to the db
db.substract('key', 1) //substract something from db
db.push('key', 'value to push'); // Pushing a value to the db
db.all(); // Fetches everything in the database
db.createBackup(); //create backup
db.loadBackup(); //load backup
db.deleteKey('key') //you can also use a key