2.0.1 • Published 4 months ago

exynos v2.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

About

exynos. Easy Discord bot debuging tool.

It's debugging tool for discord.js projects.

Installation

You could install exynos@0.4.1 by

  npm i exynos@djsv12

You could install exynos@0.5.1 by

  npm i exynos@djsv13

Stable

npm i exynos@latest

Dev

npm i itachi9797/exynos/#main

Example usage

const { Client, GatewayIntentBits } = require('discord.js')
const client = new Client({
  intents: [
    GatewayIntentBits.Guilds,
    GatewayIntentBits.GuildMembers,
    GatewayIntentBits.GuildMessages,
    GatewayIntentBits.MessageContent
  ]
})

const Exynos = require('exynos')

const ExynosHandler = new Exynos.Client(client, {
  aliases: ['exynos', 'exy'],
  prefix: '!',
  noPerm: (message) => message.reply('🚫 You have no permission to use exynos.')
})
client.on('ready', () => {
  console.log(`Logged in as ${client.user.tag}!`)
})

client.on('messageCreate', async message => {
  if (message.content === 'ping') return message.reply('pong')
  await ExynosHandler.run(message)
})

client.login('YOUR DISCORD BOT TOKEN')

Support

For Support, Help, Bug report kindly join our discord server Here

2.0.1

4 months ago

1.0.0

7 months ago

1.0.1

7 months ago