1.2.0 • Published 4 years ago

wumpcord v1.2.0

Weekly downloads
203
License
MIT
Repository
github
Last release
4 years ago

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. :sparkling_heart:

1.2.0

4 years ago

2.0.0

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.1

4 years ago

1.1.2

4 years ago

1.1.0

4 years ago

1.1.0-next.3

4 years ago

1.1.0-next.2

4 years ago

1.1.0-next.1

4 years ago

1.1.0-next.0

4 years ago

1.0.17

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago