npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

t-stark

v1.0.6

Published

Herramienta para facilitar la creacion de tu Bot de Discord.js

Downloads

413

Readme

T-Stark

T-Stark es una librería para facilitar la creación de bots en Discord. Proporciona funcionalidades útiles para configurar y gestionar comandos, así como personalizar la interacción con el bot de manera sencilla.

Características

  • Carga de comandos con prefijo y comandos de barra (slash commands).
  • Configuración flexible usando config.json o variables de entorno .env.
  • Función para mostrar un banner personalizado en la consola cuando el bot está listo.
  • Soporte para la gestión de presencia del bot.

Instalación

Usando npm

npm install t-stark

Requisitos

  • Node.js v16.0.0 o superior.
  • Una cuenta de bot en Discord Developer Portal.
  • discord.js (automáticamente instalado como dependencia).

Uso

1. Configuración del Bot

Antes de empezar, necesitas crear un archivo config.json o usar variables de entorno en un archivo .env para definir tu token y clientId de Discord.

Ejemplo de config.json:

{
  "token": "TU_TOKEN_DEL_BOT",
  "CLIENT_ID": "TU_ID_DE_CLIENTE",
  "prefix": "!" 
}

Ejemplo de .env:

TOKEN=TU_TOKEN_DEL_BOT
CLIENT_ID=TU_ID_DE_CLIENTE
PREFIX=!

2. Crear el Bot

En tu archivo principal de bot (bot.js), puedes importar y usar T-Stark para configurar tu bot:

const Discord = require('discord.js');
const TStark = require('t-stark');

// Crear el cliente de Discord
const client = new Discord.Client({
  intents: [53608447]
});

// Mostrar el login de inicio
client.on('ready', () => {
    TStark.showReady(client);
    TStark.presence(client, 1, "GTA San Andreas Multi Player!");
    TStark.initializeBot(client);
});

// Iniciar sesión con el token
client.login('TU_TOKEN_DEL_BOT');

3. Comandos

Comandos con Prefijo

Coloca tus comandos con prefijo en la carpeta commands/. Los comandos deben exportar una función execute(message, args).

Comandos Slash

Coloca tus comandos de barra en la carpeta slash_commands/. Cada comando debe tener un objeto data con un nombre único.

4. Funciones Útiles

  • TStark.initializeBot(client): Inicializa el bot con la configuración de comandos.
  • TStark.showReady(client): Muestra un banner de inicio personalizado en la consola cuando el bot está listo.

Contribuir

Si deseas contribuir a la librería T-Stark, siéntete libre de abrir un "pull request" o reportar problemas a través de la sección de Issues en GitHub.

Licencia

Este proyecto está cubierto por la Licencia de Uso Restringido v1.0. Consulte el archivo LICENSE para más información.