Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 670 Bytes

File metadata and controls

24 lines (16 loc) · 670 Bytes

CommandKit Devtools

This plugin provides a set of tools for working with CommandKit.

Installation

npm install @commandkit/devtools

Usage

To use the @commandkit/devtools plugin, you need to add it to your CommandKit application. This can be done by importing the plugin and adding it to your configuration.

import { devtools } from '@commandkit/devtools';
import { defineConfig } from 'commandkit';

export default defineConfig({
  plugins: [devtools()],
});

Now when you start your bot in development mode, this plugin will serve a web interface at http://localhost:4356 where you can view and manage your CommandKit application.