0.0.12-beta โ€ข Published 3 years ago

gdd.js v0.0.12-beta

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

๐Ÿ”Ž About

gdd.js allows you to interact with the Guilded.gg API with ease and flexibility.

๐Ÿ“Œ Features

  • Easy to use
  • Latest Guilded API version and latest additions
  • 100% coverage of Guilded API
  • Lightweight
  • Very similar to Foxcord

๐ŸŒ  Installation

Node.Js v12.0.0 is required at least

$ npm install gdd.js
$ yarn add gdd.js

๐Ÿ”ฉ Code example

const { Client } = require('gdd.js');

const client = new Client();

client.on('chatMessageCreated', async (message) => {
    if(message.content === 'ping') {
        return message.channel.send(`My ping is ${client.ping}ms`);
    }
});

client.connect('Authentification token');

๐Ÿ”ง Contributing

Before creating an issue, be sure that it has not already been deferred and try to come up with a simple approach to the issue so that deferral is accessible to all.

In order to submit a PR, make sure you have read the contribution guide

๐Ÿ”— Links

๐Ÿš€ Other

Note: Make a request to Guilded-API to have access to the bot creation and their documentation

This package is not affiliated with Guilded.gg

Server banner

You can join the official gdd.js community using this invite

๐Ÿงช License

Apache-2.0