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

better-aoi.js-fork

v1.0.1

Published

A powerful package to create Discord Bots with built-in string functions (fork)

Readme


NPM downloads     AoiJS Server     NPM version     License     Website    

Official Documentation | Official Support Server | Official NPM | Official GitHub


About

better-aoi.js-fork is a JavaScript library designed to make it even easier to build Discord bots.

This is an unofficial, enhanced fork of aoi.js. It is open-source and free to use under the Apache License 2.0. better-aoi.js-fork is suitable for beginners who are new to building bots, as well as experienced developers who want to save time, streamline their workflow, and use better features.

Features

  • Better Features: Enhanced and optimized functions to provide a more powerful development experience.
  • 600+ Pre-built Functions: better-aoi.js-fork includes all original functions that empower you to create dynamic and interactive Discord bots with ease.
  • Built-in Custom Local Database: Like the original, you get a powerful custom local database out of the box.
  • Easy-to-Use and Beginner Friendly: better-aoi.js-fork boasts a user-friendly syntax. The simple $ prefix makes it easy to write commands and get your bot up and running quickly.

Setup

// Install using: npm install better-aoi.js-fork
const {AoiClient} = require("better-aoi.js-fork");

const client = new AoiClient({
    intents: ["MessageContent", "Guilds", "GuildMessages"],
    events: ["onMessage", "onInteractionCreate"],
    prefix: "Discord Bot Prefix",
    token: "Discord Bot Token"
});

// Ping Command
client.command({
    name: "ping",
    code: `Pong! $pingms`
});

Adding Database

const {AoiClient} = require("better-aoi.js-fork");

const client = new AoiClient({
    intents: ["MessageContent", "Guilds", "GuildMessages"],
    events: ["onMessage", "onInteractionCreate"],
    prefix: "Discord Bot Prefix",
    token: "Discord Bot Token",
    database: {
        type: "aoi.db",
        db: require("@aoijs/aoi.db"),
        dbType: "KeyValue",
        tables: ["main"],
        securityKey: "a-32-characters-long-string-here",
    }
});

// Ping Command
client.command({
    name: "ping",
    code: `Pong! $pingms`
});

Command Handler

By default, better-aoi.js-fork does not have a command handler. However, you can easily add one by using the loadCommands method.

client.loadCommands("./commands/", true);
  • ./commands/ is the directory where your commands are located.
  • true allows to log the commands in console.

Notices & License

  • Fork Notice: This project is a modified version (fork) of aoi.js. All original credits to Akarui Development.
  • License: Licensed under the Apache License 2.0.
  • Reading Functions: Currently it reads $ functions from bottom to top.

Official Extensions (aoi.js)

[!IMPORTANT] This is a fork. All original credit goes to Akarui Development and the aoi.js contributors. This project is licensed under the Apache License 2.0.

Contributing

Refer to original contribution documentation for more information