Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

promise-assist

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

promise-assist

Several helper functions when working with native promises

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6.7K
increased by53.61%
Maintainers
1
Weekly downloads
 
Created
Source

promise-assist

Build Status npm version

Several helper functions when working with native promises.

API

sleep

Useful for waiting a specific amount of time before continuing an operation.

import { sleep } from 'promise-assist'

async function myOperation() {
    const startTime = Date.now()
    await sleep(500)
    console.log(`${Date.now() - startTime}ms passed!`)
}

timeout

Useful for limiting the amount of time an async Promise-based operation can take.

import { timeout } from 'promise-assist'

async function myOperation() {
    try {
        const data = await timeout(
            fetchDataFromServer(), // pass a Promise to the timeout function
            10000, // request will be limited to 10 seconds
            `failed loading required data from backend`
        )
        // do something with the data
    } catch (e) {
        // handle errors
    }
}

deferred

Creates a deferred Promise, where resolve/reject are exposed to the place that holds the promise.

Generally bad practice, but there are use-cases where one mixes callback-based API with Promise API and this is helpful.

import { deferred } from 'promise-assist'

const { promise, resolve, reject } = deferred<string>()

// `resolve` or `reject` calls are reflected on `promise`
promise.then(value => console.log(value))
resolve('some text')
// 'some text' is printed to console

License

MIT

FAQs

Package last updated on 13 Oct 2018

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc