
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
react-js-progressbar
Advanced tools
React library to help developers to draw animated, cross-browser, highly customizable progress circles using SVG.






npm install react-js-progressbar
//...
import Progressbar from 'react-js-progressbar';
export default function App() {
const [percentage, setPercentage] = useState(0);
const change_progressbar_input = () => {
setPercentage(50);
};
return (
<>
<div id='progressbarContainer'>
<Progressbar
input={percentage}
pathWidth={10}
pathColor={['#56ab2f', '#a8e063']} // use an array for gradient color.
trailWidth={20}
trailColor='#363636' // use a string for solid color.
textStyle={{ fill: 'red' }} // middle text style
>
// children goes here, an image for example. (optional)
</Progressbar>
</div>
</>
);
}
0 and 100.full circle100%true12['#f4314a', '#fa5813']round"offset-x offset-y blur-radius color"'arc' shape and when dashed is enabled.'none' to remove the shadow.0px 0px 2px #00000080false1525'none' to remove the trail.lightgray'none' to remove the background.none"" (empty string) to remove the text.input + '%'{x: '50%', y: '50%}| Option | Description | Default Value |
|---|---|---|
x | Align progressbar text on the x axis. | '50%' |
y | Align progressbar text on the y axis. | '50%' |
fill for text color.{ fontSize: '40px', fill: 'black' }input value.customText value is given.true{ duration: 500, delay: 0, ease: 'easeOutBack', animateOnMount: true, animateOnInputChange: true }| Option | Type | Description | Default Value |
|---|---|---|---|
animateOnMount | Boolean | Animate on first render. | true |
animateOnInputChange | Boolean | Animate every time input value changes. | true |
duration | Number | Progressbar animation duration in ms. | 500 |
delay | Number | Progressbar animation delay in ms. | 0 |
ease | String | Function | Check easings.net to learn more. | 'easeOutBack' |
FAQs
React library to help developers to draw animated, cross-browser, highly customizable progress circles using SVG.
The npm package react-js-progressbar receives a total of 40 weekly downloads. As such, react-js-progressbar popularity was classified as not popular.
We found that react-js-progressbar 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.