0.0.2 • Published 2 years ago

gil.js v0.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Gil.js

Build a Guilded Bot with ease.

Author's Note: The soul-purpose of this project is to try and allow people to interact with the Guilded API with ease. Of course, I can't promise 100% coverage over the API, but I try to add what I can to this and hope it becomes useful to people.

Requirements

Node.js v16+

Example

JavaScript

const Gil = require("gil.js");
const client = new Gil.Client({ token: `token` });

client.on("ready", () => {
    console.log(`Logged into ${client.user.name}`);
});

client.connect();

You can also use TypeScript of course, by changing the way you import Gil.js.

import { Client } from "gil.js";
const client = new Client({ token: `token` });

Inspirations

Discord.js - Imagine a bot

Guilded.TS - The feature rich Guilded API Wrapper

Support

Have a specific question about Gil.js? Need some help on it? Whatever you need, Gil.js is prepared. Visit our Support Server on Guilded and ask help on our support channels. All changelogs/updates are often posted in the server, including important announcements.