Skip to content

OneAndOnlyFinbar/discork

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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