Socket
Socket
Sign inDemoInstall

callback-timeout

Package Overview
Dependencies
1
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    callback-timeout

Invokes callback with single error argument if timeout occurs before it's invoked by other means


Version published
Maintainers
1
Install size
20.9 kB
Created

Changelog

Source

v4.0.0

  • Added ability to pass false as 3rd argument to indicate callback should be invoked after timing out with no error.

Readme

Source

callback-timeout

NPM version Build Status Coverage Status Sauce Test Status

Executes callback with single error argument if timeout is exceeded before it's called naturally

example

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))

usage

var timeout      = require('callback-timeout'),
    TimeoutError = require('callback-timeout/errors').TimeoutError

timeout(callback [, ms, msg])

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).

TimeoutError

The constructor of the error supplied to the callback when a timeout occurs. TimeoutError objects will have a code property with the value ETIMEDOUT.

install

With npm do:

npm install callback-timeout

testing

npm test

browser 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.

coverage

For a textual coverage overview:

npm run view-cover

or for an HTML coverage report:

npm run open-cover

Keywords

FAQs

Last updated on 04 Jun 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc