Socket
Socket
Sign inDemoInstall

promise-race

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    promise-race

An ES6 class to manage Promise race conditions. Will resolve to the first resolved Promise


Version published
Weekly downloads
1
Maintainers
1
Install size
63.9 kB
Created
Weekly downloads
 

Readme

Source

promise-race

An ES6 class to help with Promise races. This is useful when you want to ignore previous promises that are overriden by a more recently called promise

Install

$ npm install -S promise-race

Usage

import PromiseRace from 'promise-race'

const race = new PromiseRace()
const search = (query) => {
  return race.append(fetch(`https://example.com/?q=${query}`, { mode: 'no-cors' }))
    .then((response) => console.log(`${query} response from example.com`, response))
}
search('dogs', 100)
search('cats', 200)
// only the 'cats' search will resolve as it was appended _after_ the 'dogs' search

race.resolved().then(() => {
  search('ferret', 100)
  search('gerbil', 200)
  // only the 'gerbil' search will resolve as it was appended _after_ the 'dogs' search
})

FAQs

Last updated on 07 Dec 2017

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