1const Discord = require('discord.js');
2const client = new Discord.Client();
3const token = 'TOLKEN'; // Add your token here
4
5client.on('ready', () => {
6 console.log('The client is ready!')
7 })
8
9client.login(token)
1const Discord = require('discord.js') //this says that its using discord.js and classifing it as a bot
2const bot = new Discord.Client();
3
4const token = 'put your bots token here!';
5//link to the dev portal to make your own discord bot here: https://discord.com/developers/applications
1const Discord = require('discord.js');
2const client = new Discord.Client();
3const token = 'YOUR TOKEN HERE'; // For get a token , go here https://discord.com/developers/applications
4
5client.login(token);