You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

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

1.0.1
latest
Source
npmnpm
Version published
Weekly downloads
3.8K
-1.26%
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