discordjs documentation code example
Example 1: Discord.js Basics
const Discord = require("discord.js")
const client = new Discord.Client()
client.on("ready", ()=>{
console.log(`Logged in as ${client.user.tag}`)
})
client.on("message", async function (message) {
if(message.content === "!test") {
message.reply("Hello World!")
}
})
Example 2: 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);