2.2.0 • Published 11 months ago

discord-kommando.js v2.2.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
11 months ago

discord-kommando.js

An automatic interaction handler for discord.js

Supported discord.js versions

VersionStatus
v13Removed
v14Supported

Tutorial

// CommonJS
const { KommandoClient } = require('discord-kommando.js/v14');

// ESM
import { KommandoClient } from 'discord-kommando.js/v14';

const client = new KommandoClient({ directory: "src/kommando" });

client.login('your-token-goes-here');
{
    "compilerOptions": {
        "moduleResolution": "NodeNext"
    }
}

And copy it to your main file...

import { KommandoClient } from 'discord-kommando.js/v14';

const client = new KommandoClient({ directory: "dist/kommando" });

client.login('your-token-goes-here');

Adding commands

Copy and add this code into (directory in your client constructor)/commands folder

// Import the 'Command' class

const command = new Command({
    name: "first_command",
    description: "description (required)",
    options: [
        { name: "first_option", description: "description (required)", type: "string" }
    ]
});

command.handle(async itr => {
    // Do something
});

// Export it.
module.exports = command;

// Or ESM, Typescript?
export default command;

Documentation

Documentation link

2.2.0

11 months ago

2.1.30-2.2BETA

11 months ago

2.1.32-2.2BETA

11 months ago

2.1.29-2.2BETA

12 months ago

2.1.31-2.2BETA

11 months ago

2.1.28-2.2BETA

1 year ago

2.1.27-2.2BETA

1 year ago

2.1.26-2.2BETA

1 year ago

2.1.25-2.2BETA

1 year ago

2.1.24-2.2BETA

1 year ago

2.1.20-2.2BETA

1 year ago

2.1.17-2.2BETA

1 year ago

2.1.19-2.2BETA

1 year ago

2.1.22-2.2BETA

1 year ago

2.1.15-2.2BETA

2 years ago

2.1.18-2.2BETA

1 year ago

2.1.23-2.2BETA

1 year ago

2.1.21-2.2BETA

1 year ago

2.1.16-2.2BETA

1 year ago

2.1.14-2.2BETA

2 years ago

2.1.11-2.2BETA

2 years ago

2.1.13-2.2BETA

2 years ago

2.1.12-2.2BETA

2 years ago

2.1.10-2.2BETA

2 years ago

2.0.2

2 years ago

2.1.9

2 years ago

2.1.2

2 years ago

2.1.1

2 years ago

2.1.4

2 years ago

2.1.3

2 years ago

2.1.6

2 years ago

2.1.5

2 years ago

2.1.8

2 years ago

2.1.7

2 years ago

2.1.0

2 years ago

2.1.0-patch.1

2 years ago

2.1.0-patch.3

2 years ago

2.1.0-patch.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.2.21

2 years ago

1.2.22

2 years ago

1.2.20

2 years ago

1.2.12

2 years ago

1.2.10

2 years ago

1.2.11

2 years ago

1.2.8

3 years ago

1.2.9

3 years ago

1.2.0

3 years ago

1.2.7

3 years ago

1.2.6

3 years ago

1.2.5

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0-ALPHA-DEV

3 years ago

1.1.0-DEV

3 years ago

1.1.0

3 years ago

1.0.4

3 years ago

1.0.0

3 years ago