@thenamelessdev/discojs
v1.1.0
Published
DiscoJs is a tool to help you build interaction endpoint Discord bots. Using this you can make a serverless Discord bot.
Downloads
1,080
Readme
DiscoJs
DiscoJs is a tool to help you build interaction endpoint Discord bots. Using this you can make a serverless Discord bot. https://www.npmjs.com/package/@thenamelessdev/discojs
Config
To configure you have to call the config function and give it theese params:
- token:
- Your Discord bot token
- errorChannelId:
- Your Discord channel for errors. If there is an error with anything the error message will be sent there and into the console. Make sure your bot has send messages access to it
Functions
Message: Interact with message endpoints
All message functions that create or modify a message will return a message object
- sendMessage
- channelId: the channel ID where the message should be sent
- message: the message (optional)
- embeds: an array of embed objects (optional)
- deleteMessage
- messageId: the ID of the message you want to delete
- channelId: the channel ID of the message you want to delete
- replyMessage
- messageId: the message you want to reply to
- channelId: the channel the message you want to reply to is in
- message: the message you want to reply with (optional)
- embeds: an array of embed objects (optional)
- editMessage channelId:
- channelId: the channel ID of the message you want to edit
- messageId: the message ID of the message you want to edit
- message: the message (optional)
- embeds: an array of embed objects (optional)
- pinMessage:
- channelId: the channel ID of the channel the message is in
- messageId: the ID of the message you want to pin
- unpinMessage:
- channelId: the channel ID of the channel the message is in
- messageId: the ID of the message you want to unpin
Webhook: Interact with webhook endpoints (does not require config)
- executeWebhook
- url: the webhook url (example: https://discord.com/api/v10/webhooks/webhookid/webhooktoken)
- message: the message (optional)
- embeds: an array of embed objects (optional)
- deleteWebhook
- url: the webhook url to delete
- editWebhookMessage:
- url: the webhook url
- messageId: the message id you want to edit
- message: the message (optional)
- embeds: an array of embed objects (optional)
Useful: useful things
- api:
- endpoint: the endpoint you want to interact with
- method: the method you want to send the api request with (example: POST)
- body: the json body (optional)
- auth: true if you want to add the auth headers
Guilds: ineract with guild api
- ban:
- guildId: the server id of the server you want to ban
- userId: the id of the user you want to ban
- unban:
- guildId: the server id of the server you want to unban
- userId: the id of the user you want to unban
- kick:
- guildId: the server id of the server you want to kick
- userId: the id of the user you want to kick
