1.22.0 • Published 10 months ago

url-data-cache v1.22.0

Weekly downloads
18
License
ISC
Repository
github
Last release
10 months ago

url-cache

Cache data from a url request.

  import urlCacheInstance from 'url-data-cache';
  const urlDataCache = urlCacheInstance('my-app');

  // or

  const urlDataCache = require('url-data-cache')('my-app');

  // then


  // get from cache (also delete expired)
  const cachedData = urlDataCache.get(url);
  if(cachedData) return resolve(cachedData);

  // put to cache
  urlDataCache.put(url, htmlData, '1 hour');

Supported time units:

  • n second
  • n seconds
  • n minute
  • n minutes
  • n hour
  • n hours
  • n month
  • n months

where n is a number

1.22.0

10 months ago

1.21.0

2 years ago

1.19.0

2 years ago

1.18.0

2 years ago

1.17.0

2 years ago

1.20.0

2 years ago

1.16.0

3 years ago

1.15.0

5 years ago

1.14.0

5 years ago

1.13.0

5 years ago

1.12.0

5 years ago

1.11.0

5 years ago

1.10.0

5 years ago

1.9.0

5 years ago

1.8.0

5 years ago

1.7.0

5 years ago

1.6.0

5 years ago

1.5.0

5 years ago

1.4.0

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago