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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ayocord

v1.7.1

Published

This a wrapper under the discord.js. It simplify development

Readme

Introduction

Ayocord is a discord.js typescript framework based on decorators

Documenation

Check our documentation

Installation

npm

npm i ayocord

yarn

yarn add ayocord

Little bit history?

I always write handlers for my bots and it was really boring and sometimes hard For each commands you must create files In python discord libraries we're using decorators for solving this problem One class = one module (cog in python sleng), however I hate python and love TypeScript ecosystem but this way for creating discord bots I like and I decided to create this framework

Features

  • Decorator Based Syntax - use TypeScript decorators and class based way to write your discord bot
    • Interactions - use decorators to interact with discord API in one class
      • Event
      • Slash commands
      • Text commands
      • Autocomplete
    • Views - using for create your rows with callback!
      • Button
      • Select (Role, Channel, User, String)
      • Modal
    • Guards - check permissions before user use your command
      • Guard
    • Jobs - you need to check use subcribes every 20 seconds? This decorators can solve your problem
      • Job
  • Utils - some useful utils for your discord bot (not rich and not poor)
    • Snowflake parser
    • Discohook parser
    • CustomId parser
  • Multi tokens - allow you launch few bots simultaneously

Realesed Features

Launcher

Internal feature

  • [x] DiscordClient
  • [x] DiscordCollector
  • [x] DiscordFactory

Handlers

Internal feature

  • [x] EventHandler
  • [x] InteractionHandler
  • [x] TextCommandHandler

Interaction Decorators

Use this decorators for interact with discord API There are two ways to use this decorators

Recommended

  • Methods
    • [x] Event
    • [x] Component
    • [x] SlashCommand
    • [x] TextCommand
    • [x] AutoComplete
    • [x] SubCommand

Views

Use this decorators to creating action rows with callback

  • [x] Views
  • [x] Button
  • [x] StringSelect
  • [x] RoleSelect
  • [x] ChannelSelect

Guards

Use this decorator for checking permissions or another stuff before user interact with command or something else

  • Decorators
    • [x] Guard
  • Interfaces
    • [x] CanUse

Job

Use this decorator to repeat action every duration

  • Decorators
    • [ ] Job
  • Cache
    • [ ] Set jobs
    • [ ] Cancel jobs

Modules

  • Decorators
    • [x] Module
  • Lifecycle
    • [x] onEnabled
    • [x] onDisable
  • Module util
    • [x] moduleEnable
    • [x] moduleDisable