1.0.1 • Published 3 years ago

discord-custom.js v1.0.1

Weekly downloads
-
License
Apache
Repository
-
Last release
3 years ago

This is just a forked discord.js module, use in your projects, etc idc lol

Examples

const Discord = require('discord-custom.js')
const bot = new Discord.Client();

bot.on('ready', async () => {
  console.log(`Ready!`)
})
bot.on('message', async message => {
  if(message.content === 'ping'){
    message.channel.send(`Bot websocket ping: ${bot.ws.ping}ms`)
  }
})