client
A powerful discord bot making library to help you make discord bots. Super easy, 100 percent discord api coverage, and more! Discord.lib also allows you to interact with discord.js.
Get client
const dl = require("discord.lib")
dl.client.on("message", message => {
message.channel.send("I love discord.lib")
})
)Example of using discord.lib client
const dl = require("discord.lib")
dl.client.on("ready", () => {
dl.client.user.setActivity(`I am serving ${client.guilds.size} server`)
})Last updated