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

@vemlavaraloucagamers/vg-countdown

v3.0.3

Published

> This component is only for [Vue.js 3+](https://vuejs.org/)

Downloads

5

Readme

Vg-Countdown

This component is only for Vue.js 3+

npm npm Snyk Vulnerabilities for npm package Snyk Vulnerabilities for GitHub Repo

This is a component countdown.

Installation

npm install @vemlavaraloucagamers/vg-countdown

# or

yarn add @vemlavaraloucagamers/vg-countdown

Usage

// main.js
import { createApp } from 'vue'
import App from './App.vue'

import VgCountdown from '@vemlavaraloucagamers/vg-countdown'
import "@vemlavaraloucagamers/vg-countdown/dist/style.css";

const app = createApp(App)
app.use(VgCountdown)
app.mount('#app')
// page.vue
<template>
  <VgCountdown />
</template>

<template>
  <vg-countdown />
</template>

<template>
  <vg-countdown></vg-countdown>
</template>

Props

Items with an (*) mean they are required

| name | Value type | Default | Description | | ------- | :--------- | :------ | :---------------------------- | | vgId () | String | | Sets the id attribute to differentiate from other components | | day () | Number | 0 | Completion day, from 1 to 31 | | month () | String | jan | Completion month, jan to dec | | year () | Number | 9999 | Completion year, from an integer value representing a year to the number 9999 | | hour () | Number | 0 | Completion hour, from 1 to 31 | | minute () | Number | 0 | Completion minute, from 1 to 31 | | second (*) | Number | 0 | Completion second, from 1 to 31 | | daysText | String | 'day' | The text that will appear under the number | | hoursText | String | 'hours' | The text that will appear under the number | | minutesText | String | 'minutes' | The text that will appear under the number | | secondsText | String | 'seconds' | The text that will appear under the number | | showDays | Boolean | true | Defines whether or not to show the daysText | | showHours | Boolean | true | Defines whether or not to show the hoursText | | showMinutes | Boolean | true | Defines whether or not to show the minutesText | | showSeconds | Boolean | true | Defines whether or not to show the secondsText | | numberColor | String | '#000' | Sets the color of numbers | | textColor | String | '#000' | Sets the color of texts | | border | Boolean | false | Defines whether or not to show the border | | borderColor | String | '#000' | Sets the color of border | | separator | Boolean | false | Defines whether or not to show the separator | | separatorType | String | ':' | Sets the type of separator |

Events

| name | Return type | Description | | ------- | :--------- | :---------------------------- | | started | Boolean | Triggered when the countdown is started | | finished | Boolean | Triggered when the countdown is finished |

Example

// page.vue
<template>
  <VgCountdown
    vg-id="vg-countdown"
    :day="14"
    month="oct"
    :year="2024"
    :hour="19"
    :minute="44"
    :second="10"
    border-color="blue"
    text-color="blue"
    border
    separator
    separator-type="/"
    @started="somethingWhenStarting"
    @finished="somethingAtTheEnd"
  />
</template>

<script setup>
  const somethingWhenStarting = () => {
    console.log('VgCountdown Started')
  }
  const somethingAtTheEnd = () => {
    console.log('VgCountdown Finished')
  }

  return {
    somethingWhenStarting,
    somethingAtTheEnd
  }
</script>
# console when starting
VgCountdown Started
# console at the end
VgCountdown Finished

License

MIT