
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/vue
Advanced tools
Create your own progress bar with Vue
import { ProgressProvider } from '@bprogress/vue';
The @bprogress/vue package is a utility that lets you easily manage a progress bar, while remaining flexible with regard to the router you're using. It doesn't automatically start the progress bar when browsing, so you'll have to manage this logic yourself, unless you're using one of the integrations below.
<ProgressProvider>...</ProgressProvider>
<script setup lang="ts">
import App from './App.vue';
import { ProgressProvider } from '@bprogress/vue';
</script>
<template>
<ProgressProvider>
<App />
</ProgressProvider>
</template>
import { createApp } from 'vue';
import Root from './Root.vue';
createApp(Root).mount('#app');
<script setup lang="ts">
import { useProgress } from '@bprogress/vue';
const { start, stop, pause, resume } = useProgress();
</script>
<template>
<button @click="start()">Start</button>
<button @click="stop()">Stop</button>
<button @click="pause">Pause</button>
<button @click="resume">Resume</button>
</template>
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
Utility to create your own NProgress bar like with Vue
We found that @bprogress/vue 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.