| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Coming soon...
Try other TanStack libraries:
You may know TanSack Devtools by our adapter names, too!
Coming soon...
Coming soon...
Install one of the following packages based on your framework of choice:
# Npm
npm install @tanstack/react-devtools
npm install @tanstack/solid-devtools
npm install @tanstack/devtools # no framework, just vanilla jsimport { TanstackDevtools } from '@tanstack/react-devtools'
import { ReactQueryDevtoolsPanel } from '@tanstack/react-query-devtools'
import { TanStackRouterDevtoolsPanel } from '@tanstack/react-router-devtools'
function App() {
return (
<div>
<h1>My App</h1>
<TanstackDevtools
plugins={[
{
name: 'Tanstack Query',
render: <ReactQueryDevtoolsPanel />,
},
{
name: 'Tanstack Router',
render: <TanStackRouterDevtoolsPanel router={router} />,
},
]}
/>
</div>
)
}To contribute to the development of TanStack Devtools, you can clone the repository and run the following commands:
pnpm install
pnpm devThen go to any of the example directories and run:
pnpm dev| Back | FazBrowse Home | New Git URL |