OneAndOnlyFinbar / discork

Discord API Wrapper

Home Page:https://oneandonlyfinbar.github.io/discork/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

discork

A work in progress library for interacting with the discord API.

logo

import { Client } from 'discork';

const client = new Client({
  intents: ["GUILDS"]
});

client.on('ready', (client) => {
  console.log(`Logged in as ${client.user.tag}`);
})

client.login('TOKEN');

Coverage:

  • Gateway
  • Everything else

About

Discord API Wrapper

https://oneandonlyfinbar.github.io/discork/


Languages

Language:TypeScript 98.0%Language:JavaScript 2.0%