Skip to content
This repository has been archived by the owner on May 27, 2023. It is now read-only.

cloudteamdev/ByteDatabase

Repository files navigation

ByteDatabase: Built for Beginners

ByteDB Logo Wide

Discord server NPM version NPM downloads Contributor Count

Table of Content

Installation

Install with NPM:

npm install byte.db

Troubleshooting: soon
Install for deno: soon

Getting started with DiscordJS

import { Client, Intents } from "discord.js";
import { ByteDatabase } from "byte.db";

const client = new Client({
    intents: Intents.FLAGS.Guilds | Intents.Flags.GuildMessages,
});

const database = new ByteDatabase("byte.db", {
    sanitize: true,
    timeout: 10000
});

client.login("token")

ChangeLog (curr: v1.1.0, next: v2 rewrite)

nothing here yet

Roadmap

  • Class ByteDatabase

    • Methods
      • insert
      • update
      • find
      • all
      • wipe
      • delete
      • push
      • pull
    • Burst Methods
      • burstInset
      • burstFind
      • burstDelete
      • burstPush
      • burstPull
  • Class Table

    • rewrite
  • Class RowManager

    • insertRowByKey
    • updateRowByKey
    • findRowByKey
    • findAllRows
    • deleteAllRows
    • deleteRowByKey
    • pushElementToKey
    • pullElementFromKey

Contributors ✨

This database is an official project under the organisation CloudTeam and is managed by avonryle#2022 at discord.

Thanks goes to these wonderful people who contributed to this project:


oriel-beck

💻 🐛

YuzuTheNeko

💻 🐛 🤔