Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1000 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 1000 Bytes

Libcord

https://nodei.co/npm/libcord.png?downloads=true&downloadRank=true&stars=true

Discord GitHub license DOWNLOADS DOCS

Libcord is a library written in typescript to interact with the Discord API

Getting Started

const { Client } = require('libcord')
const client = new Client();

client.on("ready", () => {
    console.log("I am ready")
});
client.login("TOKEN")