promise-cache-fn

1.0.0 • Public • Published

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
  }
}

Package Sidebar

Install

npm i promise-cache-fn

Weekly Downloads

145

Version

1.0.0

License

MIT

Unpacked Size

2.71 kB

Total Files

5

Last publish

Collaborators

  • kyleruan