{"id":13422598,"url":"https://github.com/alexkuz/redux-devtools-inspector","last_synced_at":"2025-03-15T12:30:45.616Z","repository":{"id":57127722,"uuid":"52079456","full_name":"alexkuz/redux-devtools-inspector","owner":"alexkuz","description":"Another Redux DevTools Monitor","archived":true,"fork":false,"pushed_at":"2018-12-22T00:45:12.000Z","size":6266,"stargazers_count":238,"open_issues_count":15,"forks_count":46,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-15T07:56:05.665Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://alexkuz.github.io/redux-devtools-inspector/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alexkuz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-02-19T10:11:01.000Z","updated_at":"2024-11-07T03:46:40.000Z","dependencies_parsed_at":"2022-08-31T17:21:03.680Z","dependency_job_id":null,"html_url":"https://github.com/alexkuz/redux-devtools-inspector","commit_stats":null,"previous_names":[],"tags_count":38,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexkuz%2Fredux-devtools-inspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexkuz%2Fredux-devtools-inspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexkuz%2Fredux-devtools-inspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexkuz%2Fredux-devtools-inspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alexkuz","download_url":"https://codeload.github.com/alexkuz/redux-devtools-inspector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243701382,"owners_count":20333627,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-30T23:00:48.556Z","updated_at":"2025-03-15T12:30:45.059Z","avatar_url":"https://github.com/alexkuz.png","language":"JavaScript","funding_links":[],"categories":["Dev Tools","Uncategorized","JavaScript","Dev tools / Inspection tools","Marks"],"sub_categories":["Redux","Uncategorized","Side Effects","[React - A JavaScript library for building user interfaces](http://facebook.github.io/react)"],"readme":"# redux-devtools-inspector\n\n[![npm version](https://badge.fury.io/js/redux-devtools-inspector.svg)](https://badge.fury.io/js/redux-devtools-inspector)\n\n\u003eThis package was merged into [`redux-devtools` monorepo](https://github.com/reduxjs/redux-devtools). Please refer to that repository for the latest updates, issues and pull requests.\n\nA state monitor for [Redux DevTools](https://github.com/gaearon/redux-devtools) that provides a convenient way to inspect \"real world\" app states that could be complicated and deeply nested.\n\n![](https://raw.githubusercontent.com/alexkuz/redux-devtools-inspector/master/demo.gif)\n\n### Installation\n\n```\nnpm install --save-dev redux-devtools-inspector\n```\n\n### Usage\n\nYou can use `Inspector` as the only monitor in your app:\n\n##### `containers/DevTools.js`\n\n```js\nimport React from 'react';\nimport { createDevTools } from 'redux-devtools';\nimport Inspector from 'redux-devtools-inspector';\n\nexport default createDevTools(\n  \u003cInspector /\u003e\n);\n```\n\nThen you can render `\u003cDevTools\u003e` to any place inside app or even into a separate popup window.\n\nAlternative, you can use it together with [`DockMonitor`](https://github.com/gaearon/redux-devtools-dock-monitor) to make it dockable.  \nConsult the [`DockMonitor` README](https://github.com/gaearon/redux-devtools-dock-monitor) for details of this approach.\n\n[Read how to start using Redux DevTools.](https://github.com/gaearon/redux-devtools)\n\n### Features\n\nThe inspector displays a list of actions and a preview panel which shows the state after the selected action and a diff with the previous state. If no actions are selected, the last state is shown.\n\nYou may pin a certain part of the state to only track its changes.\n\n### Props\n\nName               | Type             | Description\n------------------ | ---------------- | -------------\n`theme`            | Object or string | Contains either [base16](https://github.com/chriskempson/base16) theme name or object, that can be `base16` colors map or object containing classnames or styles.\n`invertTheme`      | Boolean          | Inverts theme color luminance, making light theme out of dark theme and vice versa.\n`supportImmutable` | Boolean          | Better `Immutable` rendering in `Diff` (can affect performance if state has huge objects/arrays). `false` by default.\n`tabs`             | Array or function | Overrides list of tabs (see below)\n`diffObjectHash`   | Function         | Optional callback for better array handling in diffs (see [jsondiffpatch docs](https://github.com/benjamine/jsondiffpatch/blob/master/docs/arrays.md))\n`diffPropertyFilter` | Function       | Optional callback for ignoring particular props in diff (see [jsondiffpatch docs](https://github.com/benjamine/jsondiffpatch#options))\n\n\nIf `tabs` is a function, it receives a list of default tabs and should return updated list, for example:\n```\ndefaultTabs =\u003e [...defaultTabs, { name: 'My Tab', component: MyTab }]\n```\nIf `tabs` is an array, only provided tabs are rendered.\n\n`component` is provided with `action` and other props, see [`ActionPreview.jsx`](src/ActionPreview.jsx#L42) for reference.\n\nUsage example: [`redux-devtools-test-generator`](https://github.com/zalmoxisus/redux-devtools-test-generator#containersdevtoolsjs).\n\n### License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexkuz%2Fredux-devtools-inspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexkuz%2Fredux-devtools-inspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexkuz%2Fredux-devtools-inspector/lists"}