Node-fetch with built-in response caching.
This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Randall Schmidt 15a87fac5a write readme
2020-04-17 16:56:05 -04:00
.eslintrc.js add boilerplate 2020-04-17 15:40:42 -04:00
.gitignore Initial commit 2020-04-17 15:35:18 -04:00
index.js write readme 2020-04-17 16:56:05 -04:00
LICENSE Create LICENSE 2020-04-17 15:35:46 -04:00
package-lock.json text(), json(), buffer() work 2020-04-17 16:31:22 -04:00
package.json text(), json(), buffer() work 2020-04-17 16:31:22 -04:00
README.md write readme 2020-04-17 16:56:05 -04:00

node-fetch-cache

node-fetch with caching to a directory on disk.

The first request will result in an HTTP request and any subsequent requests with the same arguments and body function (text, json, buffer, or textConverted) will read the response body from the cache on disk.

Usage

Use it the same way you would use fetch.

const fetch = require('node-fetch-cache')('./path/to/cache/dir');

fetch('http://google.com')
  .then(response => response.text())
  .then(text => console.log(text));

API

Note that this is not the full fetch API. Headers and some other things are not accessible.

async fetch(resource [, init])

Same calling conventions as browser fetch.

Returns a CachedResponse.

async CachedResponse.text()

Returns the body as a string.

async CachedResponse.json()

Returns the body as a JavaScript object, parsed from JSON.

async CachedResponse.buffer()

Returns the body as a Buffer.

async CachedResponse.textConverted()

Identical to CachedResponse.text(), except instead of always converting to UTF-8, encoding sniffing will be performed and text converted to UTF-8, if possible.

(This API requires an optional dependency on npm package encoding, which you need to install manually.