Socket
Socket
Sign inDemoInstall

arunabase

Package Overview
Dependencies
108
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    arunabase

An API made to help developers what works with discord and twitch.


Version published
Weekly downloads
2
Maintainers
1
Created
Weekly downloads
 

Readme

Source

📘 English Readme | 📕 Readme em português

📖 About

    The ArunaBase is a API code base for Discord, Twitch, and other platforms bots, made in TypeScript, with the objective of making ease the bot creation, with a simple and organized structure, other than being completely free and open source.

    With ArunaBase create a bot capable of running commands, interact with the user, in platforms like Discord and Twitch, other than having a simple and intuitive configuration, its very fast and ease.


💻 Installing

    To install ArunaBase in your project, you need first to have NodeJS installed, then run the following command in your terminal:

NPM:

npm install arunabase

Yarn:

yarn add arunabase

⌨ Use example

    To use ArunaBase in your project, you need to import one of the classes that it exports, then create an instance of that class, passing as parameter your bot configurations as an object.

🗨 Use example with Discord


const { Discord } = require('arunabase');
// or
import { Discord } from 'arunabase';

const client = new Discord.DiscordClient({
  botID: '<Bot Id>',
  intents: [
    Discord.Intents.Flags.MessageContent, // Optional
    // ...
  ],
});

// use client.getCommandManager().generateCommand('Command name', Command parameters); to create a command.
// use client.getCommandManager().registerCommand(command); to register that command.

client.on('ready', () => {
  console.log('Bot is ready!');
});

client.login('<Bot token>');

📄 License


    The ArunaBase is distributed with the GNU license. See LICENSE for more details.


🤝 Contributing


    Contributions is what makes the open source community an amazing place and its a wonderful place to learn, inspire and create. Any contribution you make will be very much appreciated.

  1. Make a Fork of the Project
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

😉 Authors



LoboMetalurgico

SpaceFox

Made with 💚 By Aruna™'s team.

All Reserved Rights.

Keywords

FAQs

Last updated on 15 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc