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

promise-race

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

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

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 07 Dec 2017

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