
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.
@bprogress/core
Advanced tools
A slim progress bar inspired by NProgress.
NProgress V2 and Next NProgress Bar become BProgress!
nprogress-v2If you are using nprogress-v2, you can migrate to @bprogress/core by following the migration guide.
To install BProgress, run the following command:
npm install @bprogress/core
Use unpkg:
Use jsDelivr:
The following frameworks have a dedicated package for using BProgress:
Import CSS in your index.html file.
<link
rel="stylesheet"
type="text/css"
href="https://unpkg.com/@bprogress/core/dist/index.css"
/>
Import JavaScript in your index.html file.
<script type="module">
import { BProgress } from 'https://unpkg.com/@bprogress/core/dist/index.js';
BProgress.configure({
...
});
</script>
Or you can add BProgressJS as a global variable using the legacy include:
<script src="https://unpkg.com/@bprogress/core/dist/index.global.js"></script>
<script>
const { BProgress } = BProgressJS;
BProgress.configure({
...
});
</script>
import '@bprogress/core/css';
import { BProgress } from '@bprogress/core';
Simply call start() and done() to control the progress bar.
BProgress.start();
BProgress.done();
Go to the documentation to learn more about BProgress.
If you encounter any problems, do not hesitate to open an issue or make a PR here.
MIT
FAQs
NProgress-inspired library with more features
The npm package @bprogress/core receives a total of 95,402 weekly downloads. As such, @bprogress/core popularity was classified as popular.
We found that @bprogress/core 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.