Modules
discord.js has multiple ways you can add more commands. NeXos uses an advanced command handler, or what we call NeXos's Command Dependency Manager. You are required to use this format for your command to work with NeXos.
module.exports = {
name: 'title',
description: 'more about this in the next section',
execute(message, args) {
// your code here - this is called the executor
},
};Diagram
Modules
Headers
Name
Type
Description
Request Body
Name
Type
Description
Last updated