xxxxxxxxxx
const Discord = require('discord.js');
const DISCORD_SECRET = "put bot token here";
const client = new Discord.Client();
client.on('message', msg => {
if (msg.content === 'ping') {
msg.reply('pong');
}
});
client.login(DISCORD_SECRET);