Getting Started

Welcome to Guilded.TS and the Guilded bot community! You may be wondering on how to make a Guilded bot using Guilded.TS, and you're in luck because this guide will cover on how to make a simple Guilded bot with Guilded.TS!

Initiating a project

Run the following commands inside your terminal:

npm init
npm install guilded.ts
 
 
yarn init
yarn add guilded.ts
 
 
pnpm init
pnpm add guilded.ts
 
 

DANGER

You must have Node.jsopen in new window installed!

Managing a bot

The video below will guide you on how to create a bot, and how to get its token.

Example

The complete code in this guide can be viewed hereopen in new window.

TIP

All code in this Guide will be in TypeScript. Feel free to modify examples if you do not wish to use TypeScript.