Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
callback-timeout
Advanced tools
Invokes callback with single error argument if timeout occurs before it's invoked by other means
Executes callback with single error argument if timeout is exceeded before it's called naturally
var timeout = require('..')
function doSomethingFast(cb) { setTimeout(cb, 100) }
function doSomethingSlow(cb) { setTimeout(cb, 2000) }
doSomethingFast(timeout(function doSomethingFastHandler (err) {
if (err)
console.log(err.message) // Will not happen
else
console.log('doSomethingFastHandler executed without error.') // Will happen
}, 1000))
doSomethingSlow(timeout(function doSomethingSlowHandler (err) {
if (err)
console.log(err.message) // Will happen
else
console.log('doSomethingSlowHandler executed without error.') // Will not happen
}, 1000))
var timeout = require('callback-timeout')
Returns a callback function that will execute after ms
milliseconds with a single Error
argument
if not invoked by other means first.
With npm do:
npm install callback-timeout
MIT
FAQs
Invokes callback with single error argument if timeout occurs before it's invoked by other means
The npm package callback-timeout receives a total of 217 weekly downloads. As such, callback-timeout popularity was classified as not popular.
We found that callback-timeout 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.