Gathering detailed insights and metrics for better-react-spinkit
Gathering detailed insights and metrics for better-react-spinkit
Gathering detailed insights and metrics for better-react-spinkit
Gathering detailed insights and metrics for better-react-spinkit
npm install better-react-spinkit
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
ISC License
185 Stars
56 Commits
25 Forks
3 Watchers
4 Branches
6 Contributors
Updated on Sep 15, 2024
Latest Version
2.0.4
Package Id
better-react-spinkit@2.0.4
Size
49.38 kB
NPM Version
5.5.1
Node Version
9.1.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
3
23
A collection of loading indicators animated with CSS, powered by React.
BTC: 33dgdBhV1Yf5ERKLLKS7ztEAEEx3zTvSkw
ETH: 0xa6938ead6d6820377fed78b657e4eb6c5c44d1b3
npm i better-react-spinkit
1import { 2 ChasingDots, 3 Circle, 4 CubeGrid, 5 DoubleBounce, 6 FadingCircle, 7 FoldingCube, 8 Pulse, 9 RotatingPlane, 10 ThreeBounce, 11 WanderingCubes, 12 Wave 13} from 'better-react-spinkit' 14 15// somewhere in a render function ... 16<Circle />
Optionally, you can configure size and color props in context to avoid managing configuration on each instance.
1import { default as React, Component, PropTypes } from 'react' 2import { ThreeBounce } from 'better-react-spinkit' 3 4class Application extends Component { 5 static childContextTypes = { 6 betterReactSpinkit: PropTypes.object 7 }; 8 getChildContext () { 9 return { 10 betterReactSpinkit: { 11 color: 'green', 12 size: 25 13 } 14 } 15 } 16 render () { 17 // Inline props override the contextual settings. 18 return ( 19 <ThreeBounce size={15} color='blue' /> 20 ) 21 } 22}
Contributions welcome! Please read the contributing guidelines first.
👀 docs
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 6/30 approved changesets -- score normalized to 2
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
66 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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