SLCommands is a command, context, feature, and event handler made by bluey#0012. The goal of this package is to make your Discord Bot developer's life easier.
The official documentation can be found here: https://synclab.gitbook.io/sl-commands/
JavaScript
const SLHandler = require('sl-commands').default
const path = require('path')
new SLHandler({
botToken: 'YOUR_TOKEN_HERE',
commandsDir: path.join(__dirname, 'commands')
})TypeScript
import SLHandler from 'sl-commands'
import path from 'path'
new SLHandler({
botToken: 'YOUR_TOKEN_HERE',
commandsDir: path.join(__dirname, 'commands')
})This package is looking for feedback and ideas to help cover more use cases. If you have any ideas feel free to share them with the GitHub repository's issues.


