npm install --save extra-fetch
# or
yarn add extra-fetch
- fetch
- Headers
- Request
- Response
- FormData
- AbortController
- Blob
- EventSource
When using fetch
in Node.js, you can enable logging through the environment variable EXTRA_FETCH_LOG
.
-
EXTRA_FETCH_LOG=error
: log ids, timestamps, elapsed time, errors on failure. -
EXTRA_FETCH_LOG=info
: log all of the above, and the urls, methods, status codes of each request and response. -
EXTRA_FETCH_LOG=trace
: log all of the above, and the headers of each request and response.