Skip to content

Latest commit

 

History

History
71 lines (42 loc) · 1.64 KB

File metadata and controls

71 lines (42 loc) · 1.64 KB

Package for making discord bots

install size downloads

docs

About

This package is part of SplitScript.js, the everything framework

It is used for building discord bots

Install

$ npm i @splitscript.js/discord

Usage

Listen for events

This authenticates the discord APIs and listens for events from the gateway

import discord from '@splitscript.js/discord'

discord.listen('TOKEN', {
	// Intents get calculated automatically
	intents: ['guild_messages', 'message_content', 'other_intent']
})

Authenticate API requests

You can also use .login if you don't want to listen for events, but just want to use the apis

discord.login('TOKEN')

Use the APIs

Most discord APIs should be supported. You can use them like this:

await discord.channels.list('A_GUILD_ID')

For a full list of APIs, go to the docs