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.
@sysvale/vue3-long-click
Advanced tools
Vue long click (longpress) directive
Checkout the demo at https://ittus.github.io/vue-long-click/
npm install vue-long-click --save
import { longClickDirective } from 'vue-long-click'
const longClickInstance = longClickDirective({delay: 400, interval: 50})
Vue.directive('longclick', longClickInstance)
Include vue-long-click library from cdn
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.10/dist/vue.js"></script>
<script src="https://unpkg.com/vue-long-click@0.0.4/dist/libs/vue-long-click.umd.min.js"></script>
and create custom directive to use
const longClickInstance = window['vue-long-click'].longClickDirective({delay: 400, interval: 50})
Vue.directive('longclick', longClickInstance)
<button v-longclick="() => changeValue(1)">+</button>
Prop | Type | Default | Description |
---|---|---|---|
delay | Integer (milliseconds) | 400 | Delay until long click function is fired |
interval | Integer (milliseconds) | 50 | If value is greater than 0, handler function will be fire every interval milliseconds when component is pressed |
## Project setup
npm install
## Compiles and hot-reloads for development
npm run serve
## Build library
npm run build:lib
## Run tests
npm run test
## Lints and fixes files
npm run lint
FAQs
Long click (longpress) directive library for VueJS
The npm package @sysvale/vue3-long-click receives a total of 185 weekly downloads. As such, @sysvale/vue3-long-click popularity was classified as not popular.
We found that @sysvale/vue3-long-click demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.