npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-js-progress

v1.0.2

Published

With Vue Js Progress, you will have the opportunity to create your own animated progress bars.

Downloads

321

Readme

Vue Js Progress

altcenter

With Vue Js Progress, you will have the opportunity to create your own animated progress bars.

The good thing is that even if you do not use bootstrap, you will be able to create progress bars with high visual direction thanks to the default background alternatives.

Setup

npm install vue-js-progress

Import

import VueJsProgress from 'vue-js-progress'
    export default {
        components: {
            VueJsProgress 
        }
    }
</script>

npmjs

You can visit to https://www.npmjs.com/package/vue-js-progress

Usage

<VueJsProgress title="bg='electronblue'" :percentage="82" bg="electronblue" :delay="600" :striped="true" :animation="true"></VueJsProgress >

Simple Usage (Percentage)

<ProgressBar :percentage="50" />

There will be no title or no animations.

Usage (w/ Title)

<ProgressBar :percentage="50" title="My First Example" />

Notes

The all attributes are optional. When you do not fill the percentage attribute default value will be 100.

Attributes

title (optional): You will have a title above of your progress bar.

percentage (optional): What percentage do you want your progress bar to fill?

bg (optional): Currently, there are 15 different pre-defined progress bar colors. This number is more than bootstrap's progress bars!

options: pink, info, primary, success, danger, warning, turquoise, amethyst, midnightblue, electronblue, shymoment, pinkglamour, brightyarrow, americanriver, picopink, exodusfruit, pureapple.

Note: ** primary ** is the default value for bg!

customBgColor (optional): Do not like the default colors? You can also use any color you want in the progress bar. No limit!

examples: <ProgressBar customBgColor="#FF0000" /> or <ProgressBar customBgColor="red" />

Here you are not limited to just HEX colors. You can also use the color names such as red, blue, orange etc.

striped (optional): If you want your progress bar to be striped, you can type "true", if not, you can type "false". default value is "false"

animation (optional): If you want your progress bar to be animated, you can type "true", if not, you can type "false". default value is "false"

delay (optional): Would you like your progress bar to start after a certain amount of time (in millisecond)? default value is "0"