discord-astron
v1.0.4
Published
discord-astron is a simplified discord.js framework based on discord-akairo and discord.js by Astron Studios for beginners.
Downloads
23
Maintainers
Readme
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.