New:Socket for Asana Is Now Available.Learn more
Get Started

@tanstack/devtools

Package Overview
Dependencies
Maintainers
3
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tanstack/devtools

TanStack Devtools is a set of tools for building advanced devtools for your application.

latest
Source
npmnpm
Version
0.14.2
Version published
Maintainers
3
Created
Source

@tanstack/devtools

This package is still under active development and might have breaking changes in the future. Please use it with caution.

General Usage

import { TanStackDevtoolsCore } from '@tanstack/devtools'

const devtools = new TanStackDevtoolsCore({
  options: {
    // your options here
  },
  plugins: [
    // your plugins here
  ],
})

devtools.mount(document.getElementById('your-devtools-container')!)

Creating plugins

In order to create a plugin for TanStack Devtools, you can use the plugins arg of the TanStackDevtoolsCore class. Here's an example of how to create a simple plugin:

import { TanStackDevtoolsCore } from '@tanstack/devtools'

const devtools = new TanStackDevtoolsCore({
  config: {
    // your config here
  },
  plugins: [
    {
      id: 'my-plugin',
      name: 'My Plugin',
      render: (el) => (el.innerHTML = '<div>My Plugin Content</div>'),
    },
  ],
})

Keywords

devtools

FAQs

Package last updated on 20 Aug 2026

Related posts