1.0.7 • Published 5 years ago

unnamed-lib v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
5 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

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago