discord-astron

discord-astron is a simplified discord.js framework based on discord-akairo and discord.js by Astron Studios for beginners.


Keywords
astron, discord.js, discord-akairo, discord-astron, discord, api, bot, client
License
CC-BY-1.0
Install
npm install discord-astron@1.0.4

Documentation


discord-astron


About

discord-astron is a simplified discord.js framework based on discord-akairo and discord.js by Astron Studios, for beginners.

Installation

npm install discord-astron

Example Usage

const Astron = require("discord-astron");
const client = new Astron.Client();

client.on('ready', () => {
  console.log(`Logged in as ${client.user.tag}!`);
});

client.on('message', msg => {
  if (msg.content === 'ping') {
    msg.channel.send('pong');
  }
});

client.login('token');

Links

TBC

Help

You can get support at the official Astron Studios Discord support server. For discord.js-related issues you can get support in the official discord.js server.