Welcome to Dokdo Documentation
This is the official documentation for Dokdo, an easy-to-use Discord bot debugging tool.
Getting Started
Installation
You could install dokdo
by this command:
Adding Dokdo to Project
Just add a few lines of code.
const Dokdo = require('dokdo')
const DokdoHandler = new Dokdo(client, { prefix: '!' })
You could check Dokdo class options here.
At Message Handler:
client.on('message', async (message) => {
await DokdoHandler.run(message)
// your command code
})
Examples
You could check some examples here
Contributing
Contributing is always welcomed!