1.6.2 • Published 4 years ago

yandl v1.6.2

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
4 years ago

YANDL

YANDL lets you easily make a Discord bot.

Example:

const { Bot, Command } = require('yandl')
const myBot = new Bot('[token here]', '!')
const pingCmd = new Command(myBot, {
    name: 'ping',
    description: 'Pong!',
    run: (bot, msg, args) => {
        msg.send('Pong!')
    }
})
pingCmd.activate()
myBot.connect()
myBot.on('ready', async() => {
    await myBot.initUser()
    console.log('ready')
})
1.6.2

4 years ago

1.6.1

4 years ago

1.6.0

4 years ago

1.5.2

4 years ago

1.3.4

4 years ago

1.5.1

4 years ago

1.5.0

4 years ago

1.4.0

4 years ago

1.3.3

4 years ago

1.3.2

4 years ago

1.2.0

4 years ago

1.3.1

4 years ago

1.3.0

4 years ago

1.1.1

4 years ago

1.0.0

4 years ago