Skip to content

Repository files navigation

Node Fetch

A light-weight module that brings Fetch API to Node.js.

Build statusCoverage statusCurrent versionInstall sizeMentioned in Awesome Node.jsDiscord

Consider supporting us on our Open Collective:

Open Collective

You might be looking for the v2 docs

Motivation

Instead of implementing XMLHttpRequest in Node.js to run browser-specific Fetch polyfill, why not go from native http to fetch API directly? Hence, node-fetch, minimal code for a window.fetch compatible API on Node.js runtime.

See Jason Miller's isomorphic-unfetch or Leonardo Quixada's cross-fetch for isomorphic usage (exports node-fetch for server-side, whatwg-fetch for client-side).

Features

  • Stay consistent with window.fetch API.
  • Make conscious trade-off when following WHATWG fetch spec and stream spec implementation details, document known differences.
  • Use native promise and async functions.
  • Use native Node streams for body, on both request and response.
  • Decode content encoding (gzip/deflate/brotli) properly, and convert string output (such as res.text() and res.json()) to UTF-8 automatically.
  • Useful extensions such as redirect limit, response size limit, explicit errors for troubleshooting.

Difference from client-side fetch

  • See known differences:
  • If you happen to use a missing feature that window.fetch offers, feel free to open an issue.
  • Pull requests are welcomed too!

Installation

Current stable release (3.x) requires at least Node.js 12.20.0.

npm install node-fetch

Loading and configuring the module

ES Modules (ESM)

importfetchfrom'node-fetch';

CommonJS

node-fetch from v3 is an ESM-only module - you are not able to import it with require().

If you cannot switch to ESM, please use v2 which remains compatible with CommonJS. Critical bug fixes will continue to be published for v2.

npm install node-fetch@2

Alternatively, you can use the async import() function from CommonJS to load node-fetch asynchronously:

// mod.cjsconstfetch=(...args)=>import('node-fetch').then(({default: fetch})=>fetch(...args));

Providing global access

To use fetch() without importing it, you can patch the global object in node:

// fetch-polyfill.jsimportfetch,{Blob,blobFrom,blobFromSync,File,fileFrom,fileFromSync,FormData,Headers,Request,Response,}from'node-fetch'if(!globalThis.fetch){globalThis.fetch=fetchglobalThis.Headers=HeadersglobalThis.Request=RequestglobalThis.Response=Response}// index.jsimport'./fetch-polyfill'// ...

Upgrading

Using an old version of node-fetch? Check out the following files:

Common Usage

NOTE: The documentation below is up-to-date with 3.x releases, if you are using an older version, please check how to upgrade.

Plain text or HTML

importfetchfrom'node-fetch';constresponse=awaitfetch('https://github.com/');constbody=awaitresponse.text();console.log(body);

JSON

importfetchfrom'node-fetch';constresponse=awaitfetch('https://api.github.com/users/github');constdata=awaitresponse.json();console.log(data);

Simple Post

importfetchfrom'node-fetch';constresponse=awaitfetch('https://httpbin.org/post',{method: 'POST',body: 'a=1'});constdata=awaitresponse.json();console.log(data);

Post with JSON

importfetchfrom'node-fetch';constbody={a: 1};constresponse=awaitfetch('https://httpbin.org/post',{method: 'post',body: JSON.stringify(body),headers: {'Content-Type': 'application/json'}});constdata=awaitresponse.json();console.log(data);

Post with form parameters

URLSearchParams is available on the global object in Node.js as of v10.0.0. See official documentation for more usage methods.

NOTE: The Content-Type header is only set automatically to x-www-form-urlencoded when an instance of URLSearchParams is given as such:

importfetchfrom'node-fetch';constparams=newURLSearchParams();params.append('a',1);constresponse=awaitfetch('https://httpbin.org/post',{method: 'POST',body: params});constdata=awaitresponse.json();console.log(data);

Handling exceptions

NOTE: 3xx-5xx responses are NOT exceptions, and should be handled in then(), see the next section.

Wrapping the fetch function into a try/catch block will catch all exceptions, such as errors originating from node core libraries, like network errors, and operational errors which are instances of FetchError. See the error handling document for more details.

importfetchfrom'node-fetch';try{awaitfetch('https://domain.invalid/');}catch(error){console.log(error);}

Handling client and server errors

It is common to create a helper function to check that the response contains no client (4xx) or server (5xx) error responses:

importfetchfrom'node-fetch';classHTTPResponseErrorextendsError{constructor(response){super(`HTTP Error Response: ${response.status}${response.statusText}`);this.response=response;}}constcheckStatus=response=>{if(response.ok){// response.status >= 200 && response.status < 300returnresponse;}else{thrownewHTTPResponseError(response);}}constresponse=awaitfetch('https://httpbin.org/status/400');try{checkStatus(response);}catch(error){console.error(error);consterrorBody=awaiterror.response.text();console.error(`Error body: ${errorBody}`);}

Handling cookies

Cookies are not stored by default. However, cookies can be extracted and passed by manipulating request and response headers. See Extract Set-Cookie Header for details.

Advanced Usage

Streams

The "Node.js way" is to use streams when possible. You can pipe res.body to another stream. This example uses stream.pipeline to attach stream error handlers and wait for the download to complete.

import{createWriteStream}from'node:fs';import{pipeline}from'node:stream';import{promisify}from'node:util'importfetchfrom'node-fetch';conststreamPipeline=promisify(pipeline);constresponse=awaitfetch('https://github.githubassets.com/images/modules/logos_page/Octocat.png');if(!response.ok)thrownewError(`unexpected response ${response.statusText}`);awaitstreamPipeline(response.body,createWriteStream('./octocat.png'));

In Node.js 14 you can also use async iterators to read body; however, be careful to catch errors -- the longer a response runs, the more likely it is to encounter an error.

importfetchfrom'node-fetch';constresponse=awaitfetch('https://httpbin.org/stream/3');try{forawait(constchunkofresponse.body){console.dir(JSON.parse(chunk.toString()));}}catch(err){console.error(err.stack);}

In Node.js 12 you can also use async iterators to read body; however, async iterators with streams did not mature until Node.js 14, so you need to do some extra work to ensure you handle errors directly from the stream and wait on it response to fully close.

importfetchfrom'node-fetch';constread=asyncbody=>{leterror;body.on('error',err=>{error=err;});forawait(constchunkofbody){console.dir(JSON.parse(chunk.toString()));}returnnewPromise((resolve,reject)=>{body.on('close',()=>{error ? reject(error) : resolve();});});};try{constresponse=awaitfetch('https://httpbin.org/stream/3');awaitread(response.body);}catch(err){console.error(err.stack);}

Accessing Headers and other Metadata

importfetchfrom'node-fetch';constresponse=awaitfetch('https://github.com/');console.log(response.ok);console.log(response.status);console.log(response.statusText);console.log(response.headers.raw());console.log(response.headers.get('content-type'));

Extract Set-Cookie Header

Unlike browsers, you can access raw Set-Cookie headers manually using Headers.raw(). This is a node-fetch only API.

importfetchfrom'node-fetch';constresponse=awaitfetch('https://example.com');// Returns an array of values, instead of a string of comma-separated valuesconsole.log(response.headers.raw()['set-cookie']);

Post data using a file

importfetch,{Blob,blobFrom,blobFromSync,File,fileFrom,fileFromSync,}from'node-fetch'constmimetype='text/plain'constblob=fileFromSync('./input.txt',mimetype)consturl='https://httpbin.org/post'constresponse=awaitfetch(url,{method: 'POST',body: blob})constdata=awaitresponse.json()console.log(data)

node-fetch comes with a spec-compliant FormData implementations for posting multipart/form-data payloads

importfetch,{FormData,File,fileFrom}from'node-fetch'consthttpbin='https://httpbin.org/post'constformData=newFormData()constbinary=newUint8Array([97,98,99])constabc=newFile([binary],'abc.txt',{type: 'text/plain'})formData.set('greeting','Hello, world!')formData.set('file-upload',abc,'new name.txt')constresponse=awaitfetch(httpbin,{method: 'POST',body: formData})constdata=awaitresponse.json()console.log(data)

If you for some reason need to post a stream coming from any arbitrary place, then you can append a Blob or a File look-a-like item.

The minimum requirement is that it has:

  1. A Symbol.toStringTag getter or property that is either Blob or File
  2. A known size.
  3. And either a stream() method or a arrayBuffer() method that returns a ArrayBuffer.

The stream() must return any async iterable object as long as it yields Uint8Array (or Buffer) so Node.Readable streams and whatwg streams works just fine.

formData.append('upload',{[Symbol.toStringTag]: 'Blob',size: 3,*stream(){yieldnewUint8Array([97,98,99])},arrayBuffer(){returnnewUint8Array([97,98,99]).buffer}},'abc.txt')

Request cancellation with AbortSignal

You may cancel requests with AbortController. A suggested implementation is abort-controller.

An example of timing out a request after 150ms could be achieved as the following:

importfetch,{AbortError}from'node-fetch';// AbortController was added in node v14.17.0 globallyconstAbortController=globalThis.AbortController||awaitimport('abort-controller')constcontroller=newAbortController();consttimeout=setTimeout(()=>{controller.abort();},150);try{constresponse=awaitfetch('https://example.com',{signal: controller.signal});constdata=awaitresponse.json();}catch(error){if(errorinstanceofAbortError){console.log('request was aborted');}}finally{clearTimeout(timeout);}

See test cases for more examples.

API

fetch(url[, options])

  • url A string representing the URL for fetching
  • optionsOptions for the HTTP(S) request
  • Returns: Promise<Response>

Perform an HTTP(S) fetch.

url should be an absolute URL, such as https://example.com/. A path-relative URL (/file/under/root) or protocol-relative URL (//can-be-http-or-https.com/) will result in a rejected Promise.

Options

The default values are shown after each option key.

{// These properties are part of the Fetch Standardmethod: 'GET',headers: {},// Request headers. format is the identical to that accepted by the Headers constructor (see below)body: null,// Request body. can be null, or a Node.js Readable streamredirect: 'follow',// Set to `manual` to extract redirect headers, `error` to reject redirectsignal: null,// Pass an instance of AbortSignal to optionally abort requests// The following properties are node-fetch extensionsfollow: 20,// maximum redirect count. 0 to not follow redirectcompress: true,// support gzip/deflate content encoding. false to disablesize: 0,// maximum response body size in bytes. 0 to disableagent: null,// http(s).Agent instance or function that returns an instance (see below)highWaterMark: 16384,// the maximum number of bytes to store in the internal buffer before ceasing to read from the underlying resource.insecureHTTPParser: false// Use an insecure HTTP parser that accepts invalid HTTP headers when `true`.}

Default Headers

If no values are set, the following request headers will be sent automatically:

HeaderValue
Accept-Encodinggzip, deflate, br (when options.compress === true)
Accept*/*
Content-Length(automatically calculated, if possible)
Host(host and port information from the target URI)
Transfer-Encodingchunked(when req.body is a stream)
User-Agentnode-fetch

Note: when body is a Stream, Content-Length is not set automatically.

Custom Agent

The agent option allows you to specify networking related options which are out of the scope of Fetch, including and not limited to the following:

  • Support self-signed certificate
  • Use only IPv4 or IPv6
  • Custom DNS Lookup

See http.Agent for more information.

If no agent is specified, the default agent provided by Node.js is used. Note that this changed in Node.js 19 to have keepalive true by default. If you wish to enable keepalive in an earlier version of Node.js, you can override the agent as per the following code sample.

In addition, the agent option accepts a function that returns http(s).Agent instance given current URL, this is useful during a redirection chain across HTTP and HTTPS protocol.

importhttpfrom'node:http';importhttpsfrom'node:https';consthttpAgent=newhttp.Agent({keepAlive: true});consthttpsAgent=newhttps.Agent({keepAlive: true});constoptions={agent: function(_parsedURL){if(_parsedURL.protocol=='http:'){returnhttpAgent;}else{returnhttpsAgent;}}};

Custom highWaterMark

Stream on Node.js have a smaller internal buffer size (16kB, aka highWaterMark) from client-side browsers (>1MB, not consistent across browsers). Because of that, when you are writing an isomorphic app and using res.clone(), it will hang with large response in Node.

The recommended way to fix this problem is to resolve cloned response in parallel:

importfetchfrom'node-fetch';constresponse=awaitfetch('https://example.com');constr1=response.clone();constresults=awaitPromise.all([response.json(),r1.text()]);console.log(results[0]);console.log(results[1]);

If for some reason you don't like the solution above, since 3.x you are able to modify the highWaterMark option:

importfetchfrom'node-fetch';constresponse=awaitfetch('https://example.com',{// About 1MBhighWaterMark: 1024*1024});constresult=awaitres.clone().arrayBuffer();console.dir(result);

Insecure HTTP Parser

Passed through to the insecureHTTPParser option on http(s).request. See http.request for more information.

Manual Redirect

The redirect: 'manual' option for node-fetch is different from the browser & specification, which results in an opaque-redirect filtered response. node-fetch gives you the typical basic filtered response instead.

importfetchfrom'node-fetch';constresponse=awaitfetch('https://httpbin.org/status/301',{redirect: 'manual'});if(response.status===301||response.status===302){constlocationURL=newURL(response.headers.get('location'),response.url);constresponse2=awaitfetch(locationURL,{redirect: 'manual'});console.dir(response2);}

Class: Request

An HTTP(S) request containing information about URL, method, headers, and the body. This class implements the Body interface.

Due to the nature of Node.js, the following properties are not implemented at this moment:

  • type
  • destination
  • mode
  • credentials
  • cache
  • integrity
  • keepalive

The following node-fetch extension properties are provided:

  • follow
  • compress
  • counter
  • agent
  • highWaterMark

See options for exact meaning of these extensions.

new Request(input[, options])

(spec-compliant)

  • input A string representing a URL, or another Request (which will be cloned)
  • optionsOptions for the HTTP(S) request

Constructs a new Request object. The constructor is identical to that in the browser.

In most cases, directly fetch(url, options) is simpler than creating a Request object.

Class: Response

An HTTP(S) response. This class implements the Body interface.

The following properties are not implemented in node-fetch at this moment:

  • trailer

new Response([body[, options]])

(spec-compliant)

Constructs a new Response object. The constructor is identical to that in the browser.

Because Node.js does not implement service workers (for which this class was designed), one rarely has to construct a Response directly.

response.ok

(spec-compliant)

Convenience property representing if the request ended normally. Will evaluate to true if the response status was greater than or equal to 200 but smaller than 300.

response.redirected

(spec-compliant)

Convenience property representing if the request has been redirected at least once. Will evaluate to true if the internal redirect counter is greater than 0.

response.type

(deviation from spec)

Convenience property representing the response's type. node-fetch only supports 'default' and 'error' and does not make use of filtered responses.

Class: Headers

This class allows manipulating and iterating over a set of HTTP headers. All methods specified in the Fetch Standard are implemented.

new Headers([init])

(spec-compliant)

  • init Optional argument to pre-fill the Headers object

Construct a new Headers object. init can be either null, a Headers object, an key-value map object or any iterable object.

// Example adapted from https://fetch.spec.whatwg.org/#example-headers-classimport{Headers}from'node-fetch';constmeta={'Content-Type': 'text/xml'};constheaders=newHeaders(meta);// The above is equivalent toconstmeta=[['Content-Type','text/xml']];constheaders=newHeaders(meta);// You can in fact use any iterable objects, like a Map or even another Headersconstmeta=newMap();meta.set('Content-Type','text/xml');constheaders=newHeaders(meta);constcopyOfHeaders=newHeaders(headers);

Interface: Body

Body is an abstract interface with methods that are applicable to both Request and Response classes.

body.body

(deviation from spec)

Data are encapsulated in the Body object. Note that while the Fetch Standard requires the property to always be a WHATWG ReadableStream, in node-fetch it is a Node.js Readable stream.

body.bodyUsed

(spec-compliant)

  • Boolean

A boolean property for if this body has been consumed. Per the specs, a consumed body cannot be used again.

body.arrayBuffer()

body.formData()

body.blob()

body.json()

body.text()

fetch comes with methods to parse multipart/form-data payloads as well as x-www-form-urlencoded bodies using .formData() this comes from the idea that Service Worker can intercept such messages before it's sent to the server to alter them. This is useful for anybody building a server so you can use it to parse & consume payloads.

Code example
importhttpfrom'node:http'import{Response}from'node-fetch'http.createServer(asyncfunction(req,res){constformData=awaitnewResponse(req,{headers: req.headers// Pass along the boundary value}).formData()constallFields=[...formData]constfile=formData.get('uploaded-files')constarrayBuffer=awaitfile.arrayBuffer()consttext=awaitfile.text()constwhatwgReadableStream=file.stream()// other was to consume the request could be to do:constjson=awaitnewResponse(req).json()consttext=awaitnewResponse(req).text()constarrayBuffer=awaitnewResponse(req).arrayBuffer()constblob=awaitnewResponse(req,{headers: req.headers// So that `type` inherits `Content-Type`}.blob()})

Class: FetchError

(node-fetch extension)

An operational error in the fetching process. See ERROR-HANDLING.md for more info.

Class: AbortError

(node-fetch extension)

An Error thrown when the request is aborted in response to an AbortSignal's abort event. It has a name property of AbortError. See ERROR-HANDLING.MD for more info.

TypeScript

Since 3.x types are bundled with node-fetch, so you don't need to install any additional packages.

For older versions please use the type definitions from DefinitelyTyped:

npm install --save-dev @types/node-fetch@2.x

Acknowledgement

Thanks to github/fetch for providing a solid implementation reference.

Team

David FrankJimmy WärtingAntoni KepinskiRichie BendallGregor Martynus
David FrankJimmy WärtingAntoni KepinskiRichie BendallGregor Martynus
Former

License

MIT

About

A light-weight module that brings the Fetch API to Node.js

Topics

Resources

Code of conduct

Contributing

Security policy

Stars

8.9k stars

Watchers

88 watching

Forks

Releases

Sponsor this project

Packages

Used by

Contributors

Languages