gil.js
v0.2.3
Published
A powerful Node.js library for interacting with the Guilded API.
Readme
gil.js
A powerful Node.js library for interacting with the Guilded API.
Installation
npm i gil.jsyarn add gil.jsbun add gil.js
Example
const { Client } = require("gil.js");
const client = new Client({ token: `YOUR_BOT_TOKEN` });
client.on("ready", () => {
console.log(`Logged in as ${client.user?.name}!`);
});
client.login();Read more at the documentation.
Support is available at our Guilded Server!
Credits
- Inspired by discord.js
Warning
- This library is not yet complete. There is a lot of the Guilded API still to cover!
What's missing?
This will not always be an up-to-date list.
- Events:
- ServerMemberSocialLinkCreated
- ServerMemberSocialLinkUpdated
- ServerMemberSocialLinkDeleted
