Gathering detailed insights and metrics for react-dock
Gathering detailed insights and metrics for react-dock
Gathering detailed insights and metrics for react-dock
Gathering detailed insights and metrics for react-dock
DevTools for Redux with hot reloading, action replay, and customizable UI
npm install react-dock
Typescript
Module System
Node Version
NPM Version
97.7
Supply Chain
82
Quality
79.2
Maintenance
100
Vulnerability
99.6
License
Redux DevTools Extension v3.2.10
Updated on Apr 03, 2025
Redux DevTools Extension v3.2.7
Updated on Sep 21, 2024
Redux DevTools Extension v3.2.6
Updated on Sep 20, 2024
Redux DevTools Extension v3.2.5
Updated on Sep 16, 2024
Redux DevTools Extension v3.2.4
Updated on Sep 04, 2024
Redux DevTools Extension v3.2.3
Updated on Aug 31, 2024
TypeScript (73.61%)
JavaScript (25.34%)
HTML (0.64%)
Pug (0.26%)
CSS (0.15%)
Total Downloads
24,433,403
Last Day
2,596
Last Week
62,630
Last Month
323,122
Last Year
2,949,772
MIT License
14,216 Stars
1,513 Commits
1,180 Forks
234 Watchers
22 Branches
114 Contributors
Updated on Jul 06, 2025
Minified
Minified + Gzipped
Latest Version
0.8.0
Package Id
react-dock@0.8.0
Unpacked Size
34.69 kB
Size
7.33 kB
File Count
12
NPM Version
10.9.2
Node Version
22.14.0
Published on
Mar 01, 2025
Cumulative downloads
Total Downloads
Last Day
-44.5%
2,596
Compared to previous day
Last Week
-24.2%
62,630
Compared to previous week
Last Month
15.5%
323,122
Compared to previous month
Last Year
19.1%
2,949,772
Compared to previous year
2
2
Resizable dockable react component.
http://alexkuz.github.io/react-dock/demo/
$ npm i -S react-dock
1render() { 2 return ( 3 <Dock position='right' isVisible={this.state.isVisible}> 4 {/* you can pass a function as a child here */} 5 <div onClick={() => this.setState({ isVisible: !this.state.isVisible })}>X</div> 6 </Dock> 7 ); 8}
Prop Name | Description |
---|---|
position | Side to dock (left , right , top or bottom ). Default is left . |
fluid | If true , resize dock proportionally on window resize. |
size | Size of dock panel (width or height, depending on position ). If this prop is set, Dock is considered as a controlled component, so you need to use onSizeChange to track dock resizing. Value is a fraction of window width/height, if fluid is true, or pixels otherwise |
defaultSize | Default size of dock panel (used for uncontrolled Dock component) |
isVisible | If true , dock is visible |
dimMode | If none - content is not dimmed, if transparent - pointer events are disabled (so you can click through it), if opaque - click on dim area closes the dock. Default is opaque |
duration | Animation duration. Should be synced with transition animation in style properties |
dimStyle | Style for dim area |
dockStyle | Style for dock |
zIndex | Z-index for wrapper |
onVisibleChange | Fires when Dock wants to change isVisible (when opaque dim is clicked, in particular) |
onSizeChange | Fires when Dock wants to change size |
children | Dock content - react elements or function that returns an element. Function receives an object with these state values: { position, isResizing, size, isVisible } |
No vulnerabilities found.
Reason
30 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
Found 0/3 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More