New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@vitejs/devtools-self-inspect

Package Overview
Dependencies
Maintainers
4
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vitejs/devtools-self-inspect

DevTools for inspecting the DevTools itself

latest
Source
npmnpm
Version
0.1.13
Version published
Maintainers
4
Created
Source

@vitejs/devtools-self-inspect

A Vite DevTools plugin for inspecting the DevTools itself. Useful when developing or debugging DevTools plugins built with @vitejs/devtools-kit.

Features

  • List all registered RPC functions with their metadata (type, schema, cacheability, etc.)
  • List all registered dock entries
  • List all registered client scripts
  • List all Vite plugins with DevTools support and their capabilities

Installation

pnpm add -D @vitejs/devtools-self-inspect

Usage

Add the plugin to your Vite config:

import { DevToolsSelfInspect } from '@vitejs/devtools-self-inspect'
// vite.config.ts
import { defineConfig } from 'vite'

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

A "Self Inspect" panel will appear in the DevTools dock, giving you a live view of the registered RPC functions, docks, client scripts, and DevTools-enabled plugins.

Keywords

devtools

FAQs

Package last updated on 02 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts