Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
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('callback-timeout')
function doSomethingFast(cb) { setTimeout(cb, 100) }
function doSomethingSlow(cb) { setTimeout(cb, 2000) }
doSomethingFast(timeout(function doSomethingFastHandler (err) {
if (err)
console.log(err.code, 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.code, err.message) // ETIMEDOUT ...
else
console.log('doSomethingSlowHandler executed without error.') // Will not happen
}, 1000))
var timeout = require('callback-timeout'),
TimeoutError = require('callback-timeout/errors').TimeoutError
Returns a callback function that will execute after ms
milliseconds with a single TimeoutError
argument if not invoked by other means first. If the ms
timeout argument is omitted, 0, or null, then the timeout is disabled and the original callback is returned. msg
may be used to set a custom error message (on timeout), otherwise an appropriate one will be set for you. If false
is set for the timeout message the callback is returned without an error (null, on timeout).
The constructor of the error supplied to the callback
when a timeout occurs.
TimeoutError objects will have a code
property with the value ETIMEDOUT
.
With npm do:
npm install callback-timeout
npm test
npm run phantom
or
npm run travis-browser-test
This will run the tests in all browsers (specified in .zuul.yml). Be sure to educate zuul first.
For a textual coverage overview:
npm run view-cover
or for an HTML coverage report:
npm run open-cover
v4.0.0
false
as 3rd argument to indicate callback should be
invoked after timing out with no error.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 202 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
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.