Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
vue-countup-full
Advanced tools
> It's a vue component that will count to a target number with support english and arabic numbers
It's a vue component that will count to a target number with support english and arabic numbers
vue-countup-full is a dependency-free, lightweight vue component that can be overwrited easingFn by yourself. You can set startVal and endVal ,it will automatic judge count up or count down. It is support vue-ssr.
npm install vue-countup-full
<template>
<countup :value='value' :countstep='countstep' :dir='dir'></countup>
</template>
<script>
import countUp from 'vue-countup';
export default {
components: { countUp },
data () {
return {
value: 1000,
countstep: 20,
dir: 'RTl'
}
}
}
</script>
Property | Description | type | default |
---|---|---|---|
value | the value you want to arrive at | Number | |
countstep | count up step value | Number | |
dir | Support English and Arabic numbers | String | LTR |
FAQs
> It's a vue component that will count to a target number with support english and arabic numbers
The npm package vue-countup-full receives a total of 5 weekly downloads. As such, vue-countup-full popularity was classified as not popular.
We found that vue-countup-full demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.