Skip to main content
Version: Next

DevTools Plugin

The DevTools plugin for CommandKit provides a set of tools and utilities to enhance the development experience. It includes features like command inspection, performance monitoring, and debugging tools.

warning

This plugin is in early development and may not be fully functional. It is recommended to use it for testing and feedback purposes only.

Installation

npm install @commandkit/devtools@dev

Usage

Add the DevTools plugin to your CommandKit configuration:

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

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

That's it! The DevTools plugin will run in http://localhost:4356 when you start your application with commandkit dev.

DevTools Web