Gathering detailed insights and metrics for node-fetch-native
Gathering detailed insights and metrics for node-fetch-native
Gathering detailed insights and metrics for node-fetch-native
Gathering detailed insights and metrics for node-fetch-native
cross-fetch
Universal WHATWG Fetch API for Node, Browsers and React Native
native-request
A simple package with no dependencies for native requests using callback
opentelemetry-instrumentation-fetch-node
OpenTelemetry Node 18+ native fetch automatic instrumentation package
smithy-node-native-fetch
Node 18+ optimized native fetch handler for Smithy clients (like AWS SDK)
better fetch for Node.js. Works on any JavaScript runtime!
npm install node-fetch-native
Typescript
Module System
Node Version
NPM Version
TypeScript (92.47%)
JavaScript (7.53%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
184 Stars
192 Commits
6 Forks
4 Watchers
3 Branches
21 Contributors
Updated on Jul 10, 2025
Latest Version
1.6.6
Package Id
node-fetch-native@1.6.6
Unpacked Size
712.82 kB
Size
214.94 kB
File Count
33
NPM Version
10.8.2
Node Version
20.18.1
Published on
Jan 20, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
A redistribution of node-fetch v3 (+ more!) for better backward and forward compatibility.
Why this package?
require('node-fetch')
with the latest version. This stopped popular libraries from upgrading and dependency conflicts between node-fetch@2
and node-fetch@3
.fetch
is being supported. We are prepared for native fetch support using this package yet keep supporting older Node versions.Features:
✅ Prefer to native globals when available (See Node.js experimental fetch).
✅ Compact build and less install size with zero dependencies vs
✅ Support both CommonJS (require
) and ESM (import
) usage
✅ Use native version if imported without node
condition using conditional exports with zero bundle overhead
✅ Polyfill support for Node.js
✅ Compact and simple proxy supporting both Node.js versions without native fetch using HTTP Agent and versions with native fetch using Undici Proxy Agent
Install node-fetch-native
dependency:
1# npm 2npm i node-fetch-native 3 4# yarn 5yarn add node-fetch-native 6 7# pnpm 8pnpm i node-fetch-native
You can now either import or require the dependency:
1// ESM 2import fetch from "node-fetch-native"; 3 4// CommonJS 5const fetch = require("node-fetch-native");
More named exports:
1// ESM 2import { 3 fetch, 4 Blob, 5 FormData, 6 Headers, 7 Request, 8 Response, 9 AbortController, 10} from "node-fetch-native"; 11 12// CommonJS 13const { 14 fetch, 15 Blob, 16 FormData, 17 Headers, 18 Request, 19 Response, 20 AbortController, 21} = require("node-fetch-native");
Sometimes you want to explicitly use none native (node-fetch
) implementation of fetch
in case of issues with the native/polyfill version of globalThis.fetch
with Node.js or runtime environment.
You have two ways to do this:
FORCE_NODE_FETCH
environment variable before starting the application.node-fetch-native/node
Once the node-fetch-native/node
module is loaded, it pushes a log warning if the current runtime differs from the Node.js. Set the DISABLE_NODE_FETCH_NATIVE_WARN
environment variable to turn this check off.
Using the polyfill method, we can ensure global fetch is available in the environment and all files. Natives are always preferred.
Note: I don't recommend this if you are authoring a library! Please prefer the explicit methods.
1// ESM 2import "node-fetch-native/polyfill"; 3 4// CJS 5require("node-fetch-native/polyfill"); 6 7// You can now use fetch() without any import!
Node.js has no built-in support for HTTP Proxies for fetch (see nodejs/undici#1650 and nodejs/node#8381)
This package bundles a compact and simple proxy-supported solution for both Node.js versions without native fetch using HTTP Agent and versions with native fetch using Undici Proxy Agent.
By default, https_proxy
, http_proxy
, HTTPS_PROXY
, and HTTP_PROXY
environment variables will be checked and used (in order) for the proxy and if not any of them are set, the proxy will be disabled. You can override it using the url
option passed to createFetch
and createProxy
utils.
By default, no_proxy
and NO_PROXY
environment variables will be checked and used for the (comma-separated) list of hosts to ignore the proxy for. You can override it using the noProxy
option passed to createFetch
and createProxy
utils. The entries starting with a dot will be used to check the domain and also any subdomain.
[!NOTE] Using export conditions, this utility adds proxy support for Node.js and for other runtimes, it will simply return native fetch.
fetch
with proxy supportYou can simply import { fetch }
from node-fetch-native/proxy
with a preconfigured fetch
function that has proxy support.
1import { fetch } from "node-fetch-native/proxy"; 2 3console.log(await fetch("https://icanhazip.com").then((r) => r.text()));
createFetch
utilityYou can use the createFetch
utility to instantiate a fetch
instance with custom proxy options.
1import { createFetch } from "node-fetch-native/proxy"; 2 3const fetch = createFetch({ url: "http://localhost:9080" }); 4 5console.log(await fetch("https://icanhazip.com").then((r) => r.text()));
createProxy
utilitycreateProxy
returns an object with agent
and dispatcher
keys that can be passed as fetch options.
1import { fetch } from "node-fetch-native"; 2import { createProxy } from "node-fetch-native/proxy"; 3 4const proxy = createProxy(); 5// const proxy = createProxy({ url: "http://localhost:8080" }); 6 7console.log( 8 await fetch("https://icanhazip.com", { ...proxy }).then((r) => r.text()), 9);
node-fetch
Using this method, you can ensure all project dependencies and usages of node-fetch
can benefit from improved node-fetch-native
and won't conflict between node-fetch@2
and node-fetch@3
.
Using npm overrides:
1// package.json 2{ 3 "overrides": { 4 "node-fetch": "npm:node-fetch-native@latest", 5 }, 6}
Using yarn selective dependency resolutions:
1// package.json 2{ 3 "resolutions": { 4 "node-fetch": "npm:node-fetch-native@latest", 5 }, 6}
Using pnpm.overrides:
1// package.json 2{ 3 "pnpm": { 4 "overrides": { 5 "node-fetch": "npm:node-fetch-native@latest", 6 }, 7 }, 8}
Made with 💛 Published under the MIT license.
No vulnerabilities found.
No security vulnerabilities found.