1.0.0 • Published 4 years ago

promise-cache-fn v1.0.0

Weekly downloads
7
License
MIT
Repository
github
Last release
4 years ago

Promise Cache

Usage

const cachePromise = require('promise-cache-fn');

const promiseFn = () => Promise.resolve();

const { cachedFn, reset } = cachePromise(promiseFn, { ttl: 1000 * 60 }); // cache the promise for a minute

const main = async (args) => {
  const response = await cachedFn(args);

  // conditional reset cache
  if (!response) {
    reset(); // reset cache
  }
}
1.0.0

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago