
init Optional argument to pre-fill the Headers objectĬonstruct a new Headers object.All methods specified in the Fetch Standard are implemented. This class allows manipulating and iterating over a set of HTTP headers. Will evaluate to true if the response status was greater than or equal to 200 but smaller than 300. response.okĬonvenience property representing if the request ended normally.

The constructor is identical to that in the browser.īecause Node.js does not implement service workers (for which this class was designed), one rarely has to construct a Response directly. options A ResponseInit options dictionaryĬonstructs a new Response object.The following properties are not implemented in node-fetch at this moment: This class implements the Body interface. In most cases, directly fetch(url, options) is simpler than creating a Request object.Īn HTTP(S) response. The constructor is identical to that in the browser. options for the HTTP(S) requestĬonstructs a new Request object.input A string representing a URL, or another Request (which will be cloned).See options for exact meaning of these extensions. The following node-fetch extension properties are provided: This class implements the Body interface.ĭue to the nature of Node.js, the following properties are not implemented at this moment: Gzip,deflate (when press = true)Īn HTTP(S) request containing information about URL, method, headers, and the body. If no values are set, the following request headers will be sent automatically: Header
Node fetch free#

Node fetch code#
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. A light-weight module that brings window.fetch to Node.js Motivation
