Skip to content
This repository has been archived by the owner on Apr 17, 2021. It is now read-only.

Latest commit

 

History

History
39 lines (30 loc) · 901 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 901 Bytes

discord-giveaways-dashboard

Easy to use dashboard for discord-giveaways.

Coming Soon

Quick Example

const Server = require("discord-giveaways-dashboard").Server;
const { GiveawaysManager } = require("discord-giveaways");
const client = new (require("discord.js")).Client();
client.giveaways = new GiveawaysManager(client, {
    storage: __dirname+"/database.json",
    updateCountdownEvery: 5000,
    default: {
        botsCanWin: false,
        exemptPermissions: [],
        embedColor: "#FF0000",
        embedColorEnd: "#7289DA",
        reaction: "🎉"
    }
});

const server = new Server(client.giveaways, {
    PORT: 3000
});

server.on("ready", () => {
    console.log(`Server started at PORT *${server.PORT}`);
});

server.createServer();

client.login("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");

Preview

img