https://github.com/libcord/libcord
A discord api library written in typescript and made with love :heart:
https://github.com/libcord/libcord
discord library typescript
Last synced: 4 months ago
JSON representation
A discord api library written in typescript and made with love :heart:
- Host: GitHub
- URL: https://github.com/libcord/libcord
- Owner: Libcord
- License: gpl-3.0
- Created: 2021-08-27T07:55:57.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-12-15T14:51:54.000Z (over 3 years ago)
- Last Synced: 2025-10-20T15:45:31.546Z (8 months ago)
- Topics: discord, library, typescript
- Language: TypeScript
- Homepage:
- Size: 3.53 MB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Libcord
[](https://www.npmjs.com/package/libcord)
[](https://discord.gg/k672733TU3) [](https://github.com/tovade/libcord/blob/master/LICENSE) [](https://www.npmjs.com/package/libcord) [](https://libcord.js.org/)
Libcord is a library written in typescript to interact with the Discord API
## Getting Started
````javascript
const { Client } = require('libcord')
const client = new Client();
client.on("ready", () => {
console.log("I am ready")
});
client.login("TOKEN")
````