Gathering detailed insights and metrics for react-delayed
Gathering detailed insights and metrics for react-delayed
Gathering detailed insights and metrics for react-delayed
Gathering detailed insights and metrics for react-delayed
@jaredlunde/react-delayed
A higher order component which delays the rendering of its children for a user-defined amount of time.
react-delayed-list
A delayed list rendering React component
use-delayed-render
useDelayedRender is a react hook for delaying the render and unmount of a component. This is commonly used to animate UI on unmount.
react-delayed-renderer
A react component for delayed rendering of child components.
Small component for delaying the mounting and unmounting of a child component for CSS animation purposes.
npm install react-delayed
Typescript
Module System
Node Version
NPM Version
JavaScript (66.53%)
CSS (29.3%)
HTML (4.17%)
Total Downloads
143,306
Last Day
12
Last Week
78
Last Month
306
Last Year
8,797
MIT License
21 Stars
41 Commits
2 Forks
2 Watchers
1 Branches
1 Contributors
Updated on Jun 15, 2023
Minified
Minified + Gzipped
Latest Version
0.2.3
Package Id
react-delayed@0.2.3
Unpacked Size
79.38 kB
Size
30.92 kB
File Count
19
NPM Version
5.6.0
Node Version
10.1.0
Cumulative downloads
Total Downloads
Last Day
140%
12
Compared to previous day
Last Week
85.7%
78
Compared to previous week
Last Month
-5.8%
306
Compared to previous month
Last Year
-49.5%
8,797
Compared to previous year
Small component for delaying the mounting and unmounting of a child component for CSS animation purposes.
npm i react-delayed --save
Use the optional mountAfter
and unmountAfter
props for delaying the mounting and unmounting of nested components.
1<Delayed mounted={true} mountAfter={500} unmountAfter={500}> 2 <img src="./images/nyan.gif" alt="Nyan" /> 3</Delayed>
When mounted
is false
a dummy node will be rendered, which defaults to span
and can be changed with the nodeName
prop.
You're also able to pass a thunk as the children
for truly deferred components.
1<Delayed mounted={true} mountAfter={500} unmountAfter={500}> 2 {() => <img src="./images/nyan.gif" alt="Nyan" />} 3</Delayed>
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/28 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
112 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-05-05
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