1.0.1 • Published 7 months ago

singularity-discord v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

Singularity

The simplest, cleanest Discord API wrapper written in node.

Singularity is super lightweight, with batteries included. Give it a try!

Examples:

Ping/Pong!

const Client = require("singularity-discord");
const client = new Client({ token: process.env.token, intents: 33281 });

client.on("MESSAGE_CREATE", async (msg) => {
    if (msg.content === "ping") {
      client.messages.send(msg.channel_id, "pong!");
    }
});

client.login();

Check out the wiki to learn more!

1.0.1

7 months ago

1.0.0

7 months ago