packages/redux-devtools-rtk-query-monitor/README.md
A monitor that displays RTK query queries and mutations for Redux DevTools.
Created by FaberVitale, inspired by react-query devtools.
npm i @redux-devtools/rtk-query-monitor --save
yarn add @redux-devtools/rtk-query-monitor
You can use RtkQueryMonitor as the only monitor in your app:
containers/DevTools.jsimport React from 'react';
import { createDevTools } from '@redux-devtools/core';
import { RtkQueryrMonitor } from '@redux-devtools/rtk-query-monitor';
export default createDevTools(<RtkQueryrMonitor />);
Then you can render <DevTools> to any place inside app or even into a separate popup window.
Alternatively, you can use it together with DockMonitor to make it dockable.
| Name | Description |
|---|---|
theme | Either a string referring to one of the themes provided by redux-devtools-themes (feel free to contribute!) or a custom object of the same format. Optional. By default, set to 'nicinabox'. |
invertTheme | Boolean value that will invert the colors of the selected theme. Optional. By default, set to false |
pnpm --filter "rtk-query-demo" start