/aoi.js

aoi.js - The most advanced string-based package to create a Discord Bot fast and powerful.

MIT LicenseMIT

aoijs

aoi.js

The most powerful string package to create a simple and fast Discord Bot.

NPM version AoiJS Server NPM downloads

Preview

English | Japanese | Spanish

Features

  • Powerful built-in made functions with simple usages.
  • Written in TypeScript to easily provide functional errors.
  • Updated with several extensions supported from Akarui Development sideloading.

Install

npm install aoi.js
yarn add aoi.js

Example

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

const bot = new AoiClient({
    token: "DISCORD BOT TOKEN",
    intents: ["Guilds", "GuildMessages", "MessageContent"],
    prefix: "DISCORD BOT PREFIX"
})

bot.addEvent("onMessage")

bot.commands.add("basicCommand", {
    name: "ping",
    code: `Pong! $pingms`
})

bot.start()