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.
@aligilan/infinitescroll
Advanced tools
Infinite Scroll will emit event when reached at the end of the page
An infinite scroll for nuxt applications
npm install @aligilan/infinitescroll --save
...
modules:[
'@aligilan/infinitescroll'
],
...
<template>
<div>
<ul>
<li></li>
<li></li>
<li></li>
<infinite-scroll :enough="enough" @load-more="getData()" />
</ul>
</div>
</template>
<script>
data(){
return{
dataArray: [],
...
//=======infiniteScroll
enough: false,
page: 1,
pageSize: 10,
//=====================
...
}
},
mounted(){
this.getData();
},
methods:{
...
//=======infiniteScroll
async getData(){
try{
let result = await this.$axios.$get(`my-api-url?page=${this.page++}`);
if(result.success == 'true'){
this.dataArray = this.this.dataArray.concat(result.data);
// Stop scroll-loader
result.data.length < this.pageSize && (this.enough = true);
}
}catch(error){
console.log('error', error)
}
},
//=====================
...
}
</script>
Option | Description |
---|---|
:id | set an id for loader element. |
:enough | flag to visible loader or hide. |
:offset | add offset to current page scroll position, before reach loader position. |
@load-more: When page current scroll position reached loader position, will emit this event.
FAQs
Infinite Scroll will emit event when reached at the end of the page
The npm package @aligilan/infinitescroll receives a total of 20 weekly downloads. As such, @aligilan/infinitescroll popularity was classified as not popular.
We found that @aligilan/infinitescroll demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.