Skip to content

An easy database and easy to use. Data is stored in a json file on your server!

License

Notifications You must be signed in to change notification settings

SturmBrot8193/sturmbrot.db

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

sturmbrot.db v0.1.1

An easy database and easy to use. Data is stored in a json file on your server!

Installation

  • npm install sturmbrot.db

Last Update:

Bug Fixes, Replaced Links

Triggers

  • db.set('value', { value: '1' }
  • db.add("value", 1)
  • db.sub("value", 1)
  • db.push("value", {value: "1"} )
  • db.get("value")
  • db.delete("value")
  • db.all()
  • db.clear()

Examples

const Database = require("sturmbrot.db");
const db = new Database("./database.json");

db.set('status', { status: 'Online' })
/*
JSON Output:
{
  "status": {
    "status": "Online"
  }
}
*/
db.set('status', { status: 'Offline'})
/*
JSON Output:
{
  "status": {
    "status": "Offline"
  }
}
*/

db.set('money', {userid: '0'})
/*
JSON Output:
{
  "money": {
    "userid": "0"
  }
}
*/

db.add('money', {userid: '5'})
/*
JSON Output:
{
  "money": {
    "userid": "5"
  }
}
*/

db.sub('money', {userid: '5'})
/*
JSON Output:
{
  "money": {
    "userid": "0"
  }
}
*/

db.has("money", {userid: '0'}) // Output: true
db.has("money", {userid: '5'}) // Output: false

console.log(db.all()) // Get the json file

db.delete("money", {userid}) // Deleting the Users money

db.clear() // Clears the database

Support: Discord Server
Package: NPM Package

Join discord

About

An easy database and easy to use. Data is stored in a json file on your server!

Resources

License

Stars

Watchers

Forks

Packages

No packages published