Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wumpcord

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wumpcord

🚣 Flexible, type-safe, and lightweight Discord API library

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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:

FAQs

Package last updated on 07 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc