1.0.1 • Published 4 months ago

forgedb v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

ForgeDB

Easy to use database for forge.

forgedb forgescript Discord

How to use

Download this npm package:

npm i forgedb

Now, in your client initialization:

const { ForgeDB } = require("forgedb")

// I'll assume client, can be bot or anything else
const client = new ForgeClient({
    ...options // The options you currently have
    extensions: [
        new ForgeDB()
    ]
})

And voi-la, you now have database functions loaded to your bot. Check our docs/functions folder for info of all functions available.