DinographicPixels / TouchGuild

TouchGuild is a NodeJS library for interfacing with Guilded.

Home Page:https://touchguild.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


const { Client } = require("touchguild");
const client = new Client({ token: "TOKEN" });

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

client.on('error', (err) => {
    console.error(err);
});

client.connect();

For more examples, check out the examples folder on GitHub.


Installation

NodeJS 16.16.0 or higher is required. Check out Development Builds if you wish to install in-dev versions.

npm install touchguild

Development Builds

npm install touchguild@dev

The documentation under dev is always for the latest commit. If something isn't working that's in the documentation, you're likely looking at the wrong documentation.


Links:

About

TouchGuild is a NodeJS library for interfacing with Guilded.

https://touchguild.com

License:Apache License 2.0


Languages

Language:TypeScript 97.4%Language:JavaScript 2.6%