Javascript discord code example
Example 1: how to code a discord bot in javascript
/* Okay So
1. You need to know the basics of Discord.js (learn on yt)
2. Go to dev portal (https://discord.com/developers/applications) Make a bot
Invite to your server
3. Start coding the bot in Discord.js
4. Host the bot somewhere like repl.it
5. You're done / Implement the bot
*/
Example 2: discord.js bot
//first you must install dicord.js by running the command: npm install discord.js
//once u do that copy and paste this into your main file
const Discord = require('discord.js');
const client = new Discord.Client();
client.on('ready', () =>{
client.user.setStatus('your status')
console.log('Connected!')
})
//rest of your code
//always remember to never share your token with anyone
client.login('your-token-here')
Example 3: discord.js start code
const Discord = require('discord.js') //this says that its using discord.js and classifing it as a bot
const bot = new Discord.Client();
const token = 'put your bots token here!';
//link to the dev portal to make your own discord bot here: https://discord.com/developers/applications
Example 4: discord.js start
const Discord = require('discord.js');
const client = new Discord.Client();
const token = 'YOUR TOKEN HERE'; // For get a token , go here https://discord.com/developers/applications
client.login(token);
Example 5: discord.js download
/* If you are a mac user, do this in TERMINAL
If you are a Window/Linux user, do this in COMMAND PROMPT
npm install discord.js
DISCORD.JS IS NOW INSTALLED.
I suggest looking on youtube for a tutorial on setting up a project, but here are the basics.
THIS CODE SHOULD BE IN A "index.js" or "main.js" or whatever your main file is.*/
const Discord = require('discord.js');
const client - new Discord.Client();
const /*you can have any prefix you want here*/ prefix = "?"
client.on("ready", () => {
console.log('literally anything you want goes here')
})
//SUPER BASIC COMMAND: BASICALLY SHOWS THAT YOUR BOT CAN SPEAK
client.on('message', message => {
if(message.content.startsWith(`${prefix}ping`)){
message.channel.send('pong!');
}
})
//EXTREMELY IMPORTANT: GET YOUR TOKEN FROM THE DISCORD DEVELOPER PORTAL
//NEVER EVER EVER EVER TELL/GIVE ANYONE YOUR TOKEN!
client.login('your token here');