Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

guilded.ts

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

guilded.ts

A powerful NPM module that allows you to easily interact with the Guilded API.

  • 0.20.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source
Guilded.TS

About

Guilded.TS is feature rich NPM package for interacting with the Guilded API.

Packages

  • guilded.ts (GitHub | NPM) - The main package for interacting with the Guilded API.
  • guilded-api-typings (GitHub | NPM) - Type definitions for the Guilded API.
  • @guildedts/framework (GitHub | NPM) - A framework for creating a Guilded bot.
  • @guildedts/builders (GitHub | NPM) - A set of builders for creating a Guilded bot.
  • @guildedts/rest (GitHub | NPM) - The REST API manager for Guilded.TS.
  • @guildedts/ws (GitHub | NPM) - The Websocket API manager for Guilded.TS.

Installation

  • npm i guilded.ts
  • yarn add guilded.ts
  • pnpm add guilded.ts

Example usage

import Client from 'guilded.ts';
// Or
const { Client } = require('guilded.ts');

const client = new Client();

client.once('ready', () => console.log(`Logged in as ${client.user!.name}`));
client.on('disconnect', () => console.log('Disconnected from Guilded'));
client.on('messageCreate', (message) => {
	if (message.content === 'ping') message.reply('Pong!');
});

client.login('BOT_TOKEN');

Maintained by Gamertike | Contribute | Inspired by discord.js

Keywords

FAQs

Package last updated on 06 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc