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

zygotejs

v1.0.4

Published

zygotejs is a friendly wrapper for discord.js

Readme

What is zygoteJS?

A user friendly wrapper of discord.js lib for a fresh start in bot developing.

What we have?

  • Easy command handler
  • Easy event handler
  • Easy setup
  • Default command execute
  • Colorful console

Installation

zygotejs
npm install zygotejs

discord.js

npm install discord.js

Requires Node 12+ and Discord v12

Getting Started

const { lucidClient } = require("zygotejs");
const client = new lucidClient();

client.start("your token");

Event Handler

loadEvents

const { lucidClient } = require("zygotejs");
const client = new lucidClient();

client.start("your token");
client.loadEvents("./events/"); // Can Support Sub Folders

How to execute?

module.exports = {
    name: "",

    async run () {
        // The Rest of your code
    },
};

Command Handler

loadCommands

const { lucidClient } = require("zygotejs");
const client = new lucidClient();

client.start("your token");
client.loadCommands("./commands/"); // Can Support Sub Folders

How to execute?

module.exports = {
    name: "",
    description: "",
    aliases: ["Name, Other Name, Original name in the second line"],
    usage: "",
    category: "",
    cooldown: 0,

    run: async (client, message, args) => {
        // The Rest Of Your Code
    },
};

How To Make Embeds

module.exports = {
  name: "Needed Command Name",
  aliases: ["Needed Command Name", "Second Command Alias", "Third"],

  run: async (client, message, args) => {
    let embed = new MessageEmbed()
    .setTitle("Title")
    .setDescription("Description")
    .setFooter("Footer")

    message.channel.send(embed)
client.setConfig({
    prefix: ["c!",],
    defaultCooldown: 5,
    blacklist: ["1", "2"],
    developer: ["1", "2"],
    messageCooldown: "You have to wait {time} before using the command!"
}))
  }
}

Configuration

defaultExecute

// Execute Your Commands Via Default
const { lucidClient } = require("zygotejs");
const client = new lucidClient();

client.start("your token");
client.loadCommands("./commands/")
client.defaultExecute(); // You can skip if your gonna make a custom one

setConfig

const { lucidClient } = require("zygotejs");
const client = new lucidClient();

client.start("your token");
client.loadCommands("./commands/")
client.defaultExecute();

client.setConfig({
    prefix: ["c!",],
    defaultCooldown: 5,
    blacklist: ["1", "2"],
    developer: ["1", "2"],
    messageCooldown: "You have to wait {time} before using the command!"
});

Issues

It's common for you to face issues as because it is the first version that released. If you find any feel free to submit and it will be fixed on next release.