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.
swipe-to-refresh
Advanced tools
A WebComponent to pull the window down and refresh
$ npm install swipe-to-refresh
<html lang="en">
<head>
<script src="swipe-refresh.js"></script>
<script>
function doRefresh() {
console.log("Refresh!!");
}
function init() {
document.querySelector("swipe-refresh").refresh = doRefresh;
}
</script>
</head>
<body onload="init()">
<swipe-refresh></swipe-refresh>
<div style="width: 100%; height: 150vh;"></div>
</body>
</html>
The demo page: https://yishiashia.github.io/swipe-to-refresh/
If you want to customize this web component, you can import the library and
implement your new class by extend SwipeToRefresh
.
import SwipeToRefresh from "swipe-to-refresh";
class customizedSwipeToRefresh extends SwipeToRefresh {
// override here
}
The hint message to ask user pull down the page. Default value is "Swipe to refresh".
The hint message when user pull distance is larger than threshold. Default value is "Release to refresh".
The hint message when executing the refresh function. Default value is "Refreshing".
The hint message after finish execuing refresh function. Default value is "Updates".
FAQs
A WebComponent to pull the window down and refresh
The npm package swipe-to-refresh receives a total of 2 weekly downloads. As such, swipe-to-refresh popularity was classified as not popular.
We found that swipe-to-refresh demonstrated a healthy version release cadence and project activity because the last version was released less than 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.