Skip to content

Instantly share code, notes, and snippets.

@appellation
Last active December 14, 2016 05:18
Show Gist options
  • Save appellation/92af6a505beee4c4fad7137ea3e4473a to your computer and use it in GitHub Desktop.
Save appellation/92af6a505beee4c4fad7137ea3e4473a to your computer and use it in GitHub Desktop.
Literally the simplest Discord bot.
{
"token": "test token"
}
const Discord = require('discord.js');
const config = require('./config.json');
const client = new Discord.client();
client.on('message', msg => {
console.log(`[${msg.createdAt}] ${msg.author}: ${msg.content}`);
});
client.login(config.token);
{
"name": "test-bot",
"dependencies": {
"discord.js": "^10.0.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment