Start
Start up with DJS Plus and start creating your discord bot.
Installation
$ npm install djsplus// Imports
const { Client } = require("djsplus")
// Client
let client = new Client()
// Message Event
client.on("message", (message) => {
if(message.content === "?ping") {
return message.reply(`Pong! ${client.ws.ping}`)
}
})
// Login
client.login("Your bot token")Last updated