Kino7916 / aoi.js

Aoi.js - Library that simplifies coding for developing your Discord Bot

Home Page:https://aoi.js.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


aoi.js

aoi.js

Discord Server NPM Version NPM Downloads

About

aoi.js is a package with customization and ready-to-use functions to make Discord Bots with ease.

  • Interaction Commands Support
  • Optimized and customizable
  • 500+ functions available

The successor of dbd.js

Installation

Node.JS 16.6.0 or newer is required.

npm install aoi.js

Setting up

const aoijs = require("aoi.js")

const bot = new aoijs.Bot({
token: "TOKEN", //Discord Bot Token
prefix: "PREFIX", //Discord Bot Prefix
intents: "all" //Discord Intents
})

//Events
bot.onMessage()

//Command Example
bot.command({
name: "ping",
code: `Pong! \`$ping\`ms`
})

//Ready Event
bot.readyCommand({
    channel: "",
    code: `$log[Ready on $userTag[$clientID]]`
})

Optional packages

  • ffmpeg-static for allowing Music Filters to run smoothly (npm install ffmpeg-static)

Akarui Development

aoi.js is made possible by Akarui Development.
A team of Developers that create packages.

Owned by Leref

Links

Open Source

aoi.js is available and open source for the community to explore and contribute for future updates.

Please read Contributing

About

Aoi.js - Library that simplifies coding for developing your Discord Bot

https://aoi.js.org

License:Apache License 2.0


Languages

Language:JavaScript 100.0%