Skip to content
This repository was archived by the owner on Jul 11, 2021. It is now read-only.

auguwu/Wumpcord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jul 10, 2021
aff6341 Β· Jul 10, 2021
Apr 4, 2021
Apr 3, 2021
Jan 12, 2021
Apr 1, 2021
Mar 4, 2021
Mar 18, 2021
Apr 4, 2021
Dec 20, 2020
Dec 19, 2020
Apr 3, 2021
Feb 26, 2021
Dec 19, 2020
Feb 1, 2021
Jul 10, 2021
May 30, 2021
May 30, 2021
Feb 8, 2021
Feb 26, 2021
Apr 2, 2021

Repository files navigation

WARNING

wumpcord has been deprecated due to Discord's API changes being too fast paced for the limited time I have.

Wumpcord

🚣 Flexible, type-safe, and lightweight Discord API library made in TypeScript

Installation

You can install Wumpcord under NPM, as follows:

$ npm i --no-optional wumpcord

If you wish to install indev builds (that are most likely buggy), you can install them using:

$ npm i --no-optional wumpcord@indev

Features

Specific features require extra dependencies, this is a list that requires them

Optional Dependencies

  • erlpack
    • Required: No
    • Native: Yes
    • Alternative: JSON (built-in)

Need Support?

You can join the server below and join in #support under the Wumpcord category

discord embed owo

Example Bot

const { Client } = require('wumpcord');
const client = new Client({
  intents: ['guilds', 'guildMessages'],
  token: ''
});

client.on('message', event => {
  if (event.message.content === '!ping') return event.message.channel.send('henlo world');
});

client.on('ready', async () => {
  console.log(`Connected as ${client.user.tag}!`);
  client.setStatus('online', { // Sets it to "Competing in uwu"
    type: 5,
    name: 'uwu'
  });
});

client.connect();

Maintainers

Testers

None at the moment.

License

Wumpcord is released under the MIT License. πŸ’–