
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
react-scroll-progress-bar
Advanced tools
React Component for a fixed scroll progress bar. The progress bar can use the default color and height, or can be customized by any user provided height and color.
npm install react-scroll-progress-bar
import React from "react";
import ProgressBar from "react-scroll-progress-bar"; //Add this line to import the component
export default class App extends React.Component {
render() {
return (
<div>
<ProgressBar />
//This is all you need to get the default view working
</div>
);
}
}
import React from "react";
import ProgressBar from "react-scroll-progress-bar";
export default class App extends React.Component {
render() {
return (
<div>
<ProgressBar height="6" bgcolor="#000" duration="0.2" />
// Here you can add any react component or jsx // Add ProgressBar at your
top level component or Root component. // Change height and background-color
by setting respective props.
</div>
);
}
}
<ProgressBar height="8" bgcolor="#F43059" duration="1" />
height - Set height of progress bar. Default height is 8px. Pass the number not the unit. Unit is px
bgcolor - Set background-color of progress bar. Default background-color is #F43059.
duration - Set timing-duration for transition property. Default is 1s. Pass the number not the unit. Unit is s(seconds)
NOTE: To remove transition animation on progress bar, simply pass
duration="0"to ProgressBar component.
FAQs
A scroll progress bar component for React
The npm package react-scroll-progress-bar receives a total of 532 weekly downloads. As such, react-scroll-progress-bar popularity was classified as not popular.
We found that react-scroll-progress-bar 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.