cache-fetch
v1.1.0
Published
Helper for caching fetch calls in localStorage
Downloads
21
Maintainers
Readme
Helper for caching fetch calls in localStorage
Installation
yarn add cached-fetch
or
npm install cached-fetch
Usage
import cacheFetch from 'cache-fetch';
...
/**
* Cached fetch wrapper/helper
* @param {string} url URL being fetched
* @param {*} options fetch options
* @param {number} expiry time in seconds for caching, default = 300 (5 minutes)
*/
const url = 'API PATH';
const options = {
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
}
};
const response = cacheFetch(url, options);
// or
const response = cacheFetch(url, options, 600);
return response.json();
...
Offline handling (Great for PWA's)
Assuming the API call has been made already and your application has been setup for offline usage, you can use this helper to retrieve the saved data instead of using the cacheFetch
which will invalidate if cache time has elapsed.
import cacheFetch, { offlineResponse } from 'cache-fetch';
/* Will need proper implimentation based on application setup */
let online = true;
window.addEventListener('online', () => online = true);
window.addEventListener('offline', () => online = false);
...
/**
* Cached fetch wrapper/helper
* @param {string} url URL being fetched
* @param {*} options fetch options
* @param {number} expiry time in seconds for caching, default = 300 (5 minutes)
*/
const url = 'API PATH';
const options = {
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
}
};
const response = online ? cacheFetch(url, options) : offlineResponse(url);
// or
const response = online ? cacheFetch(url, options, 600) : offlineResponse(url);
return response.json();
...
Discover the release history by heading on over to the releases page.
Unless stated otherwise all works are:
and licensed under: