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 🙏

© 2026 – Pkg Stats / Ryan Hefner

archteturis

v0.4.2

Published

CLI e runtime oficial do Archteturis para criar bases Discord.js modernas, bonitas e prontas para crescer.

Readme

archteturis

CLI e runtime oficial do Archteturis para criar bots Discord.js com uma base moderna, modular, bonita e pronta para crescer.

Este pacote nao instala apenas um gerador de arquivos. Ele cria uma base completa com:

  • runtime oficial vindo de node_modules/archteturis
  • carregamento automatico de comandos e eventos
  • estrutura pensada para slash commands
  • comandos e eventos de exemplo prontos
  • terminal com interface em portugues, colorida, amigavel e com navegacao por setas

Instalacao

Sem instalar globalmente:

npx archteturis init meu-bot

Instalacao global:

npm install -g archteturis

Depois:

archteturis init meu-bot

Fluxo rapido

Crie a base:

archteturis init meu-bot

Entre na pasta e rode:

cd meu-bot
npm install
npm run dev

O que a CLI gera

O template inicial vem com:

  • src/commands/info/ping.ts
  • src/commands/admin/painel.ts
  • src/commands/utils/avatar.ts
  • src/events/once/ready.ts usando o evento clientReady
  • src/events/on/guildCreate.ts
  • src/config/bot.ts
  • .env.example

Estrutura da base

src/
  commands/
    admin/
    info/
    utils/
  events/
    on/
    once/
  config/
    bot.ts
  index.ts

Como funciona

Quando voce roda archteturis init, a CLI copia um template completo para o seu projeto e configura a dependencia archteturis no package.json.

Na pratica isso significa:

  • o projeto fica mais limpo, sem uma pasta core aparecendo dentro de src
  • o runtime do bot fica em node_modules/archteturis
  • voce continua podendo extender sua base livremente
  • o projeto nasce organizado para crescer sem excesso de boilerplate

Comandos disponiveis

Inicializar um projeto:

archteturis init [nome-do-bot]
archteturis init [nome-do-bot] --aqui
archteturis init [nome-do-bot] --nova-pasta

Gerar comandos:

archteturis add command ping
archteturis add command info/ping
archteturis add command admin/banir
archteturis add command admin/moderacao/banir

Gerar eventos:

archteturis add event clientReady
archteturis add event once/clientReady
archteturis add event on/guildCreate
archteturis add event on/client/guildMemberAdd

Organizacao recomendada

  • use commands/info para comandos informativos
  • use commands/admin para administracao e moderacao
  • use commands/utils para utilidades gerais
  • use events/once para eventos que rodam uma unica vez
  • use events/on para eventos recorrentes

O que o pacote exporta

O archteturis ja entrega:

  • ArchClient
  • loader automatico de comandos
  • loader automatico de eventos
  • helper createCommand
  • helper createEvent
  • tipagens do cliente, comandos e eventos
  • logger simples para terminal

Para quem isso serve

O Archteturis foi pensado para quem quer:

  • subir um bot Discord.js moderno sem montar toda a infraestrutura na mao
  • reduzir boilerplate
  • manter uma arquitetura limpa
  • comecar rapido sem perder capacidade de evolucao

Desenvolvimento local do pacote

Na monorepo:

npm install
npm run build --workspace archteturis
node packages/cli/dist/cli.mjs --help