"The application did not respond"
I don't understand what is wrong. I have followed what https://discordjs.guide/ says, and it doesn't work. I have searched for help but nothing relevant.
discord.js Guide
Imagine a guide... that explores the many possibilities for your discord.js bot.
20 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!show your code for the ping command
node version: 22.3.0
discord.js version: 14.15.3
and my code is
config.json
{
"token": "my-token",
"clientId": "my_client",
"guildId": "my_guild"
}
package.json
deploy-commands.js
thats it @Mark @d.js toolkit
Unknown User•6mo ago
Message Not Public
Sign In & Join Server To View
nope
just "the application did not respond"
says it was successful
ill send
Unknown User•6mo ago
Message Not Public
Sign In & Join Server To View
yes
@rmHawk765
Unknown User•6mo ago
Message Not Public
Sign In & Join Server To View
bruh
thats what the website said to do to run it
so what should i do?
nvm its fine
node index.js
Sorry for reviving an old thread, figured it would be useful for anyone who happened upon it like it was for me, but everytime you update the "node deploy-commands.js" do you need to also update the "node index.js" or no?
Not if you only have code changes in your command data
Command deployment is only to tell discord the commands to show on the slash command recommendation menu.
To actually make it work you need to run the bot, and wait for the interactionCreate event and then handle the interaction to run the respective execute function