Skip to content

nayvcake/eris

 
 

Repository files navigation

Eris NPM version

A Node.js wrapper for interfacing with Discord.

Installing

You will need NodeJS 10.4+. If you need voice support you will also need Python 2.7 and a C++ compiler. Refer to the Getting Started section of the docs for more details.

npm install --no-optional eris

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

Ping Pong Example

const { Client } = require('eris');
const client = new Client('Bot TOKEN');
// Replace TOKEN with your bot account's token

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

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

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

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

More examples can be found in the examples folder.

Useful Links

License

Refer to the LICENSE file.

About

A NodeJS Discord library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%