项目作者: wonderlandpark

项目描述 :
Dokdo. Easy Discord bot debuging tool.
高级语言: JavaScript
项目地址: git://github.com/wonderlandpark/dokdo.git
创建时间: 2020-10-14T13:44:28Z
项目社区:https://github.com/wonderlandpark/dokdo

开源协议:MIT License

下载








Build status





About

Dokdo. Easy Discord bot debuging tool.

It’s debugging tool for discord.js projects.

Preview

sh

Installation


Using Discord.js v12?

You could install dokdo@0.4.1 by

sh npm i dokdo@djsv12

Using Discord.js v13?

You could install dokdo@0.5.1 by

sh npm i dokdo@djsv13

Stable

  1. npm i dokdo@latest

Dev

  1. npm i wonderlandpark/dokdo#main

Features

Shell command on stdout update

shell

Easy shard broadcastEval manager

shard

Example usage

  1. const Discord = require('discord.js')
  2. const client = new Discord.Client({ intents: ['GUILDS', 'GUILD_MESSAGES'] })
  3. const Dokdo = require('dokdo')
  4. const DokdoHandler = new Dokdo.Client(client, { aliases: ['dokdo', 'dok'], prefix: '!' }) // Using Bot Application ownerID as default for owner option.
  5. client.on('messageCreate', async message => {
  6. if (message.content === 'ping') return message.channel.send('Pong') // handle commands first
  7. DokdoHandler.run(message) // try !dokdo
  8. })
  9. client.login('super secret token')

Notes

Message contents intent not approved?

You can set the Dokdo prefix including mentions. This allows the client to read the message content.

Example:

  1. new Dokdo(client, { prefix: '<@285185716240252929>' })
  2. // Commmand Usage: <@285185716240252929>dokdo

Contributing

Please check out it hasn’t already been exists before you create issue, and check the contribution guide before you submit Pull Request.