
Research
Security News
Malicious npm Packages Use Telegram to Exfiltrate BullX Credentials
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
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
We found that react-scroll-progress-bar demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.
Security News
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.