@yankovsky/axios-etag-cache
v1.3.0
Published
Axios etag interceptor to enable If-None-Match request with ETAG support
Downloads
1
Readme
axios-etag-cache
Axios etag interceptor to enable If-None-Match request with ETAG support
Basic use:
const axiosETAGCache = require('axios-etag-cache');
axiosETAGCache(axios)
.get('http://example.com')
.then(console.log)
.catch(console.error);