Skip to content

thenamelessdev/DiscoJs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)

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

About

A node.js libary that help you interact with your Discord bot

Resources

License

Stars

Watchers

Forks

Packages

No packages published