Home


✨ Pegasus DB

downloadsBadge versionBadge

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