1.0.7 • Published 3 years ago

unnamed-lib v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

unnamed-lib

A Discord library written in JavaScript

Example:

const Bot = require('unnamed-lib');
const bot = new Bot({
    token: "Token",
    intents: 4608
});
bot.on('message', (message) => {
    const args = message.content.slice('!'.length).trim().split(' ');
    const command = args.shift().toLowerCase();
    if(command === 'ping') return bot.sendMessage('pong!', message.channel_id);
});


bot.run();
1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago