0.15.4 • Published 3 years ago

aether-library v0.15.4

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Aether NPM version

A Node.js wrapper for interfacing with Discord.

Installing

You will need NodeJS 10.4+.

npm install --no-optional Aether-library

If you need voice support, remove the --no-optional.

Ping Pong Example

const Aether = require("Aether-library");

var bot = new Aether("Bot TOKEN");
// Replace TOKEN with your bot account's token

bot.on("ready", () => { // When the bot is ready
    console.log("Ready!"); // Log "Ready!"
});

bot.on("error", (err) => {
  console.error(err); // or your preferred logger
});

bot.on("messageCreate", (msg) => { // When a message is created
    if(msg.content === "!ping") { // If the message content is "!ping"
        bot.createMessage(msg.channel.id, "Pong!");
        // Send a message in the same channel with "Pong!"
    } else if(msg.content === "!pong") { // Otherwise, if the message is "!pong"
        bot.createMessage(msg.channel.id, "Ping!");
        // Respond with "Ping!"
    }
});

bot.connect(); // Get the bot to connect to Discord

Useful Links

License

Refer to the LICENSE file.

Copyright Aether 2021

0.15.4

3 years ago

0.15.3

3 years ago

0.15.2

3 years ago

0.15.1

3 years ago