discord start discordjs code example
Example 1: discord.js start
const Discord = require('discord.js');
const client = new Discord.Client();
const token = 'TOLKEN'; // Add your token here
client.on('ready', () => {
console.log('The client is ready!')
})
client.login(token)
Example 2: 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