redux-devtools/packages/redux-devtools-rtk-query-monitor
Nathan Bierema 41fae27637
Use pnpm for running scripts instead of nx (#1770)
* Use pnpm for running scripts instead of nx

* Fix typos
2024-09-20 03:06:32 +00:00
..
demo fix(deps): update dependency msw to ^2.4.7 (#1762) 2024-09-17 00:19:53 +00:00
src fix(deps): update all non-major dependencies (#1713) 2024-08-26 01:53:07 +00:00
test Update Redux packages (#1583) 2024-08-05 23:11:13 -04:00
babel.config.esm.json [rtk-query-monitor] Replace jss with Emotion (#1568) 2023-12-14 00:45:53 +00:00
babel.config.json [rtk-query-monitor] Replace jss with Emotion (#1568) 2023-12-14 00:45:53 +00:00
CHANGELOG.md Version Packages (#1651) 2024-04-07 21:19:20 +00:00
eslint.config.mjs Use flat config for ESLint (#1712) 2024-08-08 23:47:07 -04:00
jest.config.cjs Use flat config for ESLint (#1712) 2024-08-08 23:47:07 -04:00
LICENSE.md [feat][monitor] Add rkt-query-inspector-monitor - feat/rtk query monitor (#750) 2021-08-26 15:33:06 -04:00
monitor-demo.gif [feat][monitor] Add rkt-query-inspector-monitor - feat/rtk query monitor (#750) 2021-08-26 15:33:06 -04:00
package.json chore(deps): update all non-major dependencies (#1746) 2024-09-16 19:24:11 -04:00
README.md Use pnpm for running scripts instead of nx (#1770) 2024-09-20 03:06:32 +00:00
tsconfig.json [inspector-monitor] Add explicit return types (#1573) 2023-12-16 17:10:27 +00:00
tsconfig.test.json [rtk-query-monitor] Replace jss with Emotion (#1568) 2023-12-14 00:45:53 +00:00

Redux DevTools RTK Query inspector monitor

A monitor that displays RTK query queries and mutations for Redux DevTools.

Created by FaberVitale, inspired by react-query devtools.

Demo

Preview

RTK Query inspector monitor demo

Installation

npm

npm i @redux-devtools/rtk-query-monitor --save

yarn

yarn add @redux-devtools/rtk-query-monitor

Usage

You can use RtkQueryMonitor as the only monitor in your app:

containers/DevTools.js

import 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.

See also

Features

  • sorts active queries and mutations in ascending or descending order by:
    • fulfilledTimeStamp
    • query key
    • query status
    • endpoint
    • api reducerPath
  • filters active queries and mutations by:
    • fulfilledTimeStamp
    • query key
    • query status
    • endpoint
    • api reducerPath
  • toggleable regular expression search
  • Displays
    • status flags
    • query state
    • tags
    • subscriptions
    • api state
    • api stats
    • actions relevant to the selected query or mutation

Redux DevTools props

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

Development

Start Demo

pnpm --filter "rtk-query-demo" start

License

MIT