README
Concordjs is a Discord.js Wrapper to make using discord.js simpler
Here is an example ping command
const concord = require('@olykir/concord')
const client = new concord.Client('YourPrefix') // If you do not use a prefix it will default to '!'
client.on('ready' () => {
console.log('I\'m online!')
})
client.on('message', message => {
if(message.content === 'ping') {
message.channel.send('Pong!')
}
})
client.login('YourToken')
// Yes it does look like D.JS as of now but concord is in Development stages