It is a framework for Discord.js
Features:
- command and event handler
- utility functions
- command reload
- and other stuff
npm install https://github.com/DeltaRade/liberch
const liberch=require('liberch');
const client=new liberch.Client({prefixes:['/',';'],ownerID:'',mentionAsPrefix:false});
client.commandHandler.load('commands');
client.loadEvents('events');
client.login('token') const liberch=require('liberch');
let say=new liberch.Command({name:'say',alias:['s']})
say.setExecute((message,args)=>{
message.delete()
message.channel.send(args.join(' '))
})
module.exports=sayevents/ready.js
module.exports=(client)=>{
console.log(`ready ${client.user.username}`)
}