
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
discord-interaction
Advanced tools
A library that let you use message interaction in your discord.js messages !
Add a button to a message:
//Create a MessageInteraction
var messageToSend = new MessageInteraction("Message",message.channel)
//Add a button
messageToSend.addButton("Button",1,"my_button")
//Send the message
channel.send(messageToSend)
Add a select menu to a message:
//Create a MessageInteraction
var messageToSend = new MessageInteraction("Message",message.channel)
//Create an array of options
var menuOptions = [{"label":"First option","value":"first_option","description":"Description for the first option","emoji":{"name":"😄"}}]
//Add the select menu to the message
messageToSend.addSelectMenu("my_select_menu",menuOptions,"My select menu",1,1)
//Send the message
message.channel.send(messageToSend)
Await a button to be clicked
//Create a MessageInteraction
var messageToSend = new MessageInteraction("Message",message.channel)
//Add a button
messageToSend.addButton("Button",1,"my_button")
//Send the message
var messageSent = await message.channel.send(messageToSend)
//Await for the button to be clicked
var buttonClicked = await MessageInteraction.awaitButtonClicked(messageSent)
//Receive the data of the button ({"custom_id","component_type"}) and the member who clicked on the button
console.log(buttonClicked.data,buttonClicked.member)
Await a select menu to be clicked
//Create a MessageInteraction
var messageToSend = new MessageInteraction("Message",message.channel)
//Create an array of options
var menuOptions = [{"label":"First option","value":"first_option","description":"Description for the first option","emoji":{"name":"😄"}}]
//Add the select menu to the message
messageToSend.addSelectMenu("my_select_menu",menuOptions,"My select menu",1,1)
//Send the message
var messageSent = await message.channel.send(messageToSend)
//Await for the button to be clicked
var selectMenuClicked = await MessageInteraction.awaitSelectMenuClicked(messageSent)
//Receive the data of the button ({"custom_id","component_type","values":[]}) and the member who clicked on the button
console.log(selectMenuClicked.data,selectMenuClicked.member)
Respond to an interaction
//Create a MessageInteraction
var messageToSend = new MessageInteraction("Message",message.channel)
//Add a button
messageToSend.addButton("Button",1,"my_button")
//Send the message
var messageSent = await message.channel.send(messageToSend)
//Await for the button to be clicked
var buttonClicked = await MessageInteraction.awaitButtonClicked(messageSent)
//Respond to the interaction
MessageInteraction.respondToInteraction(buttonClicked.id,buttonClicked.token)
FAQs
Create interaction on your discord.js message
We found that discord-interaction demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.