1.0.4 • Published 3 years ago

discord-astron v1.0.4

Weekly downloads
-
License
CC-BY-1.0
Repository
github
Last release
3 years ago

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.