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.
DebounceIf a condition is met.
debounce(() => {
console.log('Debounced after 1s!')
}, 1000)
let isLoading = true
setTimeout(() => (isLoading = false), 5000)
// Example using function
let dots = ''
debounceIf(
() => {
console.log('Debounced after condition is met!')
},
500,
() => {
dots += '.'
if (dots.length > 3) {
dots = '.'
}
console.log('Loading' + dots)
return !isLoading
},
)
// Example with class instantiation
const debounceInst = new DebounceIf(() => {
console.log('Debounced from DebouncedIf() instance after 2s!')
}, 2000)
debounceInst.debounce()
<input type="text" id="debounce" />
<div id="suggestions"></div>
<script>
var exports = {}
</script>
<script src="debounceIf.js"></script>
<script>
const words = ['world', 'wide', 'web']
document.getElementById('debounce').onkeypress = event => {
exports.debounce(() => {
const search = event.target.value
const suggestions = words
.filter(word => word.startsWith(search.toLowerCase()))
.sort()
.join('<br />')
document.getElementById('suggestions').innerHTML = suggestions
}, 500)
}
</script>
See tests/debounceIf.html to learn more about how to incorporate this into your project via HTML and JS or tests/usage.ts for an example on how to debounceIf with NodeJS and Typescript.
In the project directory, you can run:
npm run build
Builds debounceIf.ts and tests/usage.ts into JS files for usage. usage.ts is a demo of the script being used in Typescript while tests/debounceIf.html provides a demonstration of usage within the browser.
npm run test-usage
Runs the sample usage.js file which should output a log in your console.
You can learn more about the developer here.
FAQs
DebounceIf a condition is met.
The npm package debounceif receives a total of 0 weekly downloads. As such, debounceif popularity was classified as not popular.
We found that debounceif 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.