esmcord
esmcord copied to clipboard
Discord library written in Typescript leveraging the latest ECMAScript features.
ESMCord
Discord library written in Typescript leveraging the latest ECMAScript features.
Documentation
•
Report a Bug
•
Request a Feature
Example Usage
import { Client } from 'esmcord';
const esmcord = new Client(process.env.TOKEN, {
debug: false,
});
esmcord.on('Ready', time => {
console.log(`Ready at ${time}`);
});
esmcord.connect();
Contributing
Contributions are what make the open source community such a fantastic place to learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request