Sha256: 64004d2af3846a48d1e82e3da0679e3c3059f9785750e6ab9f3399d74cdb525f

Contents?: true

Size: 782 Bytes

Versions: 71

Compression:

Stored size: 782 Bytes

Contents

# promise-inflight

One promise for multiple requests in flight to avoid async duplication

## USAGE

```javascript
const inflight = require('promise-inflight')

// some request that does some stuff
function req(key) {
  // key is any random string.  like a url or filename or whatever.
  return inflight(key, () => {
    // this is where you'd fetch the url or whatever
    return Promise.delay(100)
  })
}

// only assigns a single setTimeout
// when it dings, all thens get called with the same result.  (There's only
// one underlying promise.)
req('foo').then(…)
req('foo').then(…)
req('foo').then(…)
req('foo').then(…)
```

## SEE ALSO

* [inflight](https://npmjs.com/package/inflight) - For the callback based function on which this is based.

## STILL NEEDS

Tests!

Version data entries

71 entries across 70 versions & 14 rubygems

Version Path
rapid_stack-0.2.0 templates/frontend/node_modules/promise-inflight/README.md
rapid_stack-0.1.1 templates/FrontEnd/node_modules/promise-inflight/README.md
rapid_stack-0.1.0 templates/FrontEnd/node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.60 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.59 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.58 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.57 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.56 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.55 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.54 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.53 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.52 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.51 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.50 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.49 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.48 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.47 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.46 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.45 node_modules/promise-inflight/README.md
immosquare-cleaner-0.1.44 node_modules/promise-inflight/README.md