Gathering detailed insights and metrics for vue-simple-progress
Gathering detailed insights and metrics for vue-simple-progress
Gathering detailed insights and metrics for vue-simple-progress
Gathering detailed insights and metrics for vue-simple-progress
npm install vue-simple-progress
Typescript
Module System
Node Version
NPM Version
Vue (64.26%)
JavaScript (25.34%)
HTML (8.8%)
Batchfile (1.6%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
92 Stars
41 Commits
24 Forks
1 Watchers
13 Branches
3 Contributors
Updated on Jan 21, 2025
Latest Version
1.1.1
Package Id
vue-simple-progress@1.1.1
Unpacked Size
300.83 kB
Size
88.71 kB
File Count
22
NPM Version
5.8.0
Node Version
8.9.1
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
24
A simple, flexible progress bar for Vue.js
vue-simple-progress is designed to be a lightweight Vue.js progress bar requiring minimal configuration.
https://github.com/dzwillia/vue-simple-progress
https://dzwillia.github.io/vue-simple-progress/examples
IE 10+ (due to CSS animation support).
1npm install vue-simple-progress --save
All styling for this component is done via computed styles in the
Progress.vue
component and requires no external CSS files.
The following examples can also be used with CommonJS by replacing ES6-specific syntax with CommonJS equivalents.
1import Vue from 'vue' 2import ProgressBar from 'vue-simple-progress' 3 4new Vue({ 5 components: { 6 ProgressBar 7 } 8})
in markup:
1<div id="app"> 2 <progress-bar></progress-bar> 3</div>
Add a script tag pointing to dist/vue-simple-progress.min.js
after adding Vue.
Example:
1<html> 2<head> 3 ... 4</head> 5<body> 6 <div id="app"> 7 <vue-simple-progress></vue-simple-progress> 8 </div> 9 10 <script src="path/to/vue.js"></script> 11 <script src="path/to/vue-simple-progress.js"></script> 12 <script> 13 new Vue({ 14 el: '#app' 15 }) 16 </script> 17</body> 18</html>
<progress-bar size="medium" val="60" text="60">
<progress-bar bar-color="#dc720f" val="60" text="60%">
<progress-bar bar-color="#dc720f" val="60" text="60%" title="60%">
More live code examples on JSFiddle
Props | Type | Values | Default |
---|---|---|---|
val | Number | 0 - max | 0 |
max | Number | Any number | 100 |
size | Number | String | tiny, small, medium, large, huge, massive, {n} | 3 |
bg-color | String | Color | #eee |
bar-color | String | Color | #2196f3 |
bar-transition | String | CSS transition | all 0.5s ease |
bar-border-radius | Number | 0 - max | 0 |
spacing | Number | Any Number | 4 |
text | String | Text to display | (empty string) |
text-align | String | left, right, center | center |
text-position | String | bottom, top, middle, inside | bottom |
font-size | Number | Any Number | 13 |
text-fg-color | String | Color | #222 |
vue-simple-progress is open source and released under the MIT License.
Copyright (c) 2017 David Z Williams.
PS: I would love to know if you're using vue-simple-progress. Tweet to me at @padredaveo.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/24 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
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
126 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
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