A powerful Node.js library for interacting with the Guilded API.
npm i gil.js
yarn add gil.js
bun add gil.js
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
- discord.js (inspiration)
- @discordjs/collection
- This library is not yet complete. There is a lot of the Guilded API still to cover!