Gathering detailed insights and metrics for vue-ellipse-progress
Gathering detailed insights and metrics for vue-ellipse-progress
Gathering detailed insights and metrics for vue-ellipse-progress
Gathering detailed insights and metrics for vue-ellipse-progress
A Vue.js component to create beautiful animated circular progress bars
npm install vue-ellipse-progress
Typescript
Module System
Node Version
NPM Version
JavaScript (66.61%)
Vue (30.02%)
SCSS (2.04%)
Handlebars (1.09%)
HTML (0.23%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
363 Stars
911 Commits
38 Forks
5 Watchers
6 Branches
3 Contributors
Updated on Jul 11, 2025
Latest Version
2.2.0
Package Id
vue-ellipse-progress@2.2.0
Unpacked Size
132.23 kB
Size
39.46 kB
File Count
4
NPM Version
10.5.2
Node Version
20.13.1
Published on
Oct 03, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
21
A dependency-free, simple, flexible and smooth Vue.js plugin to create beautiful circle progress bars, implemented with SVG. Follow these three steps to get started:
1// install 2npm i vue-ellipse-progress 3// initialize 4import veProgress from "vue-ellipse-progress"; 5createApp(App).use(veProgress); 6// use 7<ve-progress :progress="50"/>
[!TIP] Dive into the documentation to get more information about the installation, usage, and configuration of the plugin. Explore a wide range of interactive examples showcasing various styles, animations, and use cases.
Install via npm:
npm i vue-ellipse-progress@next
Import and initialize the component in your main.js
. After initialization, the component is available as <ve-progress/>
.
1import { createApp } from "vue"; 2import veProgress from "vue-ellipse-progress"; 3createApp(App).use(veProgress);
You also have the option to import the component directly:
1import { VeProgress } from "vue-ellipse-progress";
To use the component without a build tool you can customize and get the veprogress.umd.min.js
file from JSDelivr.
Just add the following line to your HTML and initialize the component as plugin:
1<script src="https://cdn.jsdelivr.net/npm/vue-ellipse-progress/dist/veprogress.umd.min.js"></script> 2... 3createApp(App).use(veprogress);
The development always happens in dev
branch. You'll find all the latest updates there.
dev
will only be merged into the master when all unit tests have been passed, builds are successful,
documentation is updated, and functionality is verified on the documentation .
Before all that, changes remain in beta.
The project was initialized with Vue CLI. Execute the following commands to start development locally:
npm i
npm run serve
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
Found 0/10 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
45 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More