Slashy is an easy to use framework for Discord slash commands. It works with both interactions received over the gateway and via webhook, and even includes middleware to handle webhook validation with ease.
- Install
npm i slashy
# or
yarn add slashy
- Import
const {Interaction, validateInteraction, validateRequest} = require('slashy');
import {Interaction, validateInteraction, validateRequest} from 'slashy';
The following methods can be called on an instance of the Interaction class (defined i
in the above examples)
The constructor only has one required parameter, interaction
, containing interaction data. If you choose to exclude all other parameters, you must set your application ID as an environment variable called APPLICATION_ID
and the default send options will be used.
new Interaction(interaction: Interaction)
new Interaction(interaction: Interaction, defaults?: Partial<InteractionResponse>)
new Interaction(interaction: Interaction, applicationId?: string, defaults?: Partial<InteractionResponse>)
Example:
const i = new Interaction(interaction, 'application-id', {
type: 3 // send initial response as `ChannelMessage` by default
});
-
i.send(body: string): Promise<void | WebhookPostResult>
- send a plain text message -
i.send(body: InteractionResponse): Promise<void>
- send the initial response message. Note: no data is returned -
i.send(body: WebhookBody): Promise<WebhookPostResult>
- send a followup message
Exclude the
id
parameter to edit the initial response.
-
i.edit(body: string, id?: string): Promise<WebhookPostResult>
- edit the message's text content -
i.edit(body: WebhookBody, id?: string): Promise<WebhookPostResult>
- edit the full message object
Exclude the
id
parameter to delete the initial response.
-
i.delete(): Promise<void>
- delete the initial response -
i.delete(id: string)
- delete a followup message
-
i.toString(): string
- generate the command that was typed by the user using the data provided
Alias for Interaction#toString
-
i.callbackURL: string
- the callback URL (used for sending the initial response)
-
i.webhookURL: string
- the webhook URL (used for sending followup messages)
Slashy comes with all documented interaction types from Discord's API docs.
Slash supports both methods of receiving Discord interaction data.
For more examples, refer to the examples folder
If you are using a bot, receiving interactions over the Discord gateway is the simplest option. Most Discord libraries have a way to listen for raw websocket events, so we'll use that to listen for INTERACTION_CREATE
events.
bot.ws.on('INTERACTION_CREATE', interaction => {
const i = new Interaction(interaction, bot.user.id);
});
bot.on('rawWS', event => {
if (event.t === 'INTERACTION_CREATE') {
const i = new Interaction(event.d, bot.user.id);
}
});
If you are not using a bot or prefer to receive interactions via webhook, theres a few additional steps you must take. Out of the box, slashy includes Express middleware to handle webhook validation as well as a validation function that makes it easy to use with any webserver.
app.use(express.json());
app.post('/cmds', validateInteraction('public-key'), (req, res) => {
const i = new Interaction(req.body, 'application-id');
});
Not everyone uses express, there's some other great options out there. Slash comes with a validation function that makes verifying requests easy, no matter which framework you're using. In the example below, I will be using Fastify, but it should be pretty easy to use with whatever framework you're using.
fastify.post('/cmds', async (request, reply) => {
const isSigned = await validateRequest(
'public-key',
request.body,
request.headers
);
// request is not valid
if (!isSigned) {
return reply.code(401);
}
// acknowledge ping
if (request.body.type === 1) {
return {type: 1};
}
const i = new Interaction(request.body, 'application-id');
});