Socket
Socket
Sign inDemoInstall

timers-promises

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

timers-promises

Timers Promises API, for node 14 and below


Version published
Weekly downloads
2.4K
decreased by-22.12%
Maintainers
1
Weekly downloads
 
Created
Source

timers-promises

Timers Promises API, for node 14 and below.

Example

const timers = require('timers-promises')
const AbortController = require('abort-controller')

await timers.setTimeout(5000)

// With abort
const controller = new AbortController()
await timers.setTimeout(10000, 'value', {
  signal: controller.signal
})
// in another context
controller.abort()

API

See https://nodejs.org/api/timers.html#timers_timers_promises_api.

Roadmap

  • setTimeout([delay[, value[, options]]])
  • setImmediate([value[, options]])
  • setInterval([delay[, value[, options]]])

Kudos

Development of this module is sponsored by Transloadit.

License

MIT

FAQs

Package last updated on 08 May 2021

Did you know?

Socket

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
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc