Gathering detailed insights and metrics for react-es6-progressbar.js
Gathering detailed insights and metrics for react-es6-progressbar.js
Gathering detailed insights and metrics for react-es6-progressbar.js
Gathering detailed insights and metrics for react-es6-progressbar.js
A React wrapper for kimmobrunfeldt's excellent ProgressBar.js with full access to the library's options
npm install react-es6-progressbar.js
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
50 Commits
2 Forks
1 Watchers
10 Branches
1 Contributors
Updated on May 14, 2021
Latest Version
1.1.0
Package Id
react-es6-progressbar.js@1.1.0
Unpacked Size
30.99 kB
Size
10.26 kB
File Count
7
NPM Version
6.9.0
Node Version
10.16.3
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
$ npm install --save react-es6-progressbar.js
import React, { Component } from 'react';
import { Circle, SemiCircle, Line } from 'react-es6-progressbar.js'
class App extends Component{
const circle_options = {
text: 'test',
style: {
color: 'green'
}
};
const semicircle_options = {
text: {
value: 'semicircle test',
color: 'rgba(255, 255, 255, 0.6)
},
color: '#333',
duration: 1000
};
const line_options = {
color: 'red',
easing: 'easeOut',
strokeWidth: '5'
};
render(){
return(
<Circle progress={0.75} options={circle_options} container_style={{height: '200px', width: '200px'}} />
<SemiCircle progress={0.33} options={semicircle_options} container_style={{height: '200px', width: '200px'}} />
<Line progress={1.0} options={line_options} container_style={{height: '200px', width: '200px'}} />
);
}
}
Prop | Type | Default | Usage |
---|---|---|---|
container_class | String | null | Class to be added to container element |
container_style | Object | null | CSS styles for the container element |
progress | Number | 0.5 | ProgressBar.js progress amount from 0 to 1, where 1 is 100% of the distance. |
options | Object | null | ProgressBar.js shape container options |
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/18 approved changesets -- 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
39 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