how to make a discord bot discord.js
//Here is how to get your bot up and running!
//1: Go to https://nodejs.org/ and download node.js.
//2: Open your code editor
//3: Make a new folder.
//4: Name it DiscordBot - This can be whatever you want.
//5: Make a text document and name it main.js
//6: Put the text document in your folder.
//7: Open your folder in your text editor.
//8: Go to main.js
//9: Press [Windows] + [R].
//10: Type: "cmd" in the text box.
//11: In the command prompt, type: "npm install discord.js"
//12: Inside main.js, insert this script:
const Discord = require('discord.js')
const client = new Discord.Client()
client.on('ready', () =>{
client.user.setStatus('Listening for: !help')
console.log('Bot is ready to be used!')
}