
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-progress-component
Advanced tools
Semi circle and circle progress bar for react.
$ npm install react-progress-component --save
import React from 'react';
import { SemiCircleProgress } from 'react-progress-component';
function App() {
return (
<div>
<SemiCircleProgress progressValue={40} />
</div>
);
}
| Name | Type | Default Value | Description |
|---|---|---|---|
| totalProgress | number | 100 | Total value for the progress bar |
| progressValue | number | 10 | The current progress value |
| progressLabel | string | 'Progress' | Label for the progress bar |
| radius | number | 50 | Radius of the circle |
| strokeWidth | number | 10 | Width of the stroke for the circle |
| strokeBackgroundColor | string | '#C9E8B8' | Background color for the circle |
| backgroundColor | string | '#FFFFFF' | Background color for the component |
| strokeColor | string | '#7AC74F' | Stroke color of the circle for the progressed area |
| strokeLinecap | string | 'round' | Shape of the end of the stroke |
import React from 'react';
import { CircleProgress } from 'react-progress-component';
function App() {
return (
<div>
<CircleProgress progressValue={40} strokeWidth={10} progressLabel={'Loading'} />
</div>
);
}
| Name | Type | Default Value | Description |
|---|---|---|---|
| totalProgress | number | 100 | Total value for the progress bar |
| progressValue | number | 10 | The current progress value |
| progressLabel | string | 'Progress' | Label for the progress bar |
| radius | number | 80 | Radius of the semi circle |
| strokeWidth | number | 20 | Width of the stroke for the semi circle |
| strokeBackgroundColor | string | '#C9E8B8' | Background color for the semi circle |
| backgroundColor | string | '#FFFFFF' | Background color for the component |
| strokeColor | string | '#7AC74F' | Stroke color of the semi circle for the progressed area |
| strokeLinecap | string | 'round' | Shape of the end of the stroke |
FAQs
Progress bar for react
We found that react-progress-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.