1.0.0 • Published 2 years ago

command-sync v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

command-sync

An upgrade over the existing sync-commands library made by @Androz2091

Features

  • Sync commands over a single or multiple servers.
  • Sync global commands.
  • Discord.js v14 compatible

Installation

Install discord-sync-commands-v14 with npm

  npm install discord-sync-commands-v14

Code example.

const sync = require('discord-sync-commands-v14');
sync(client, [
    {
        name: 'ping',
        description: 'Ping the bot.'
    }
], {
    debug: true,
    guildId: '1234566' // remove this property to use global commands
});