/esmcord

Discord library written in Typescript leveraging the latest ECMAScript features.

Primary LanguageTypeScriptGNU General Public License v3.0GPL-3.0

GitHub issues GitHub forks GitHub stars GitHub license GitHub last commit



Discordium Logo

ESMCord

Discord library written in Typescript leveraging the latest ECMAScript features.

DocumentationReport a BugRequest 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.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request