
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.
progress-lite
Advanced tools
A lightweight progress bar library like nprogress, built for fun with custom logic and zero dependencies.
Works with React, Vue, vanilla JS, or anywhere in the browser. 🎉
npm install progress-lite
or with yarn:
yarn add progress-lite
import { progress } from "progress-lite"
// Start the progress bar
progress.start()
// Simulate async work
setTimeout(() => {
progress.done()
}, 2000)
import { useEffect } from "react"
import { progress } from "progress-lite"
export default function App() {
useEffect(() => {
progress.start()
setTimeout(() => progress.done(), 1500)
}, [])
return <h1>Hello Progress 🚀</h1>
}
| Method | Description |
|---|---|
progress.start() | Start the progress bar |
progress.inc() | Increment progress by random amount |
progress.done() | Complete and hide the progress bar |
progress.set(n) | Set progress manually (0 → 1) |
The progress bar uses a default CSS.
You can override it:
#progress-lite {
background: linear-gradient(to right, #4facfe, #00f2fe);
height: 4px;
}
Try it live here 👉 Progress Lite Playground
MIT © 2025 viswesh
FAQs
A lightweight progress bar library inspired by nprogress
We found that progress-lite 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.

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.