Mirror: A Node.js fetch shim using built-in Request, Response, and Headers (but without native fetch)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Version Packages (#10)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
1ebaff45 2b29583b

+15 -16
-5
.changeset/ready-items-wear.md
··· 1 - --- 2 - 'fetch-nodeshim': patch 3 - --- 4 - 5 - Prevent outright error when `--no-experimental-fetch` is set, which causes `Request`, `Response`, `FormData`, and `Headers` to not be available globally.
-5
.changeset/stupid-garlics-tap.md
··· 1 - --- 2 - 'fetch-nodeshim': patch 3 - --- 4 - 5 - Update rollup config for reduced output and exclude sources from sourcemaps
-5
.changeset/tricky-pants-rest.md
··· 1 - --- 2 - 'fetch-nodeshim': minor 3 - --- 4 - 5 - Add automatic configuration for `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY` similar to the upcoming Node 24+ built-in support. Agents will automatically be created and used when these environment variables are set.
+14
CHANGELOG.md
··· 1 1 # minifetch 2 2 3 + ## 0.4.0 4 + 5 + ### Minor Changes 6 + 7 + - Add automatic configuration for `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY` similar to the upcoming Node 24+ built-in support. Agents will automatically be created and used when these environment variables are set 8 + Submitted by [@kitten](https://github.com/kitten) (See [#8](https://github.com/kitten/fetch-nodeshim/pull/8)) 9 + 10 + ### Patch Changes 11 + 12 + - Prevent outright error when `--no-experimental-fetch` is set, which causes `Request`, `Response`, `FormData`, and `Headers` to not be available globally 13 + Submitted by [@kitten](https://github.com/kitten) (See [#11](https://github.com/kitten/fetch-nodeshim/pull/11)) 14 + - Update rollup config for reduced output and exclude sources from sourcemaps 15 + Submitted by [@kitten](https://github.com/kitten) (See [#9](https://github.com/kitten/fetch-nodeshim/pull/9)) 16 + 3 17 ## 0.3.0 4 18 5 19 ### Minor Changes
+1 -1
package.json
··· 1 1 { 2 2 "name": "fetch-nodeshim", 3 - "version": "0.3.0", 3 + "version": "0.4.0", 4 4 "description": "A Node.js fetch shim using built-in Request, Response, and Headers (but without native fetch)", 5 5 "author": "Phil Pluckthun <phil@kitten.sh>", 6 6 "source": "./src/index.ts",