Fetch
The Fetch API ↗ provides an interface for asynchronously fetching resources via HTTP requests inside of a Worker.
-
fetch(resource, options optional)
: Promise<Response>
- Fetch returns a promise to a Response.
-
resource
↗ Request | string | URL -
options
options- An object that defines the content and behavior of the request.
When making a subrequest with the fetch()
API, you can specify which forms of compression to prefer that the server will respond with (if the server supports it) by including the Accept-Encoding
↗ header.
Workers supports both the gzip and brotli compression algorithms. Usually it is not necessary to specify Accept-Encoding
or Content-Encoding
headers in the Workers Runtime production environment – brotli or gzip compression is automatically requested when fetching from an origin and applied to the response when returning data to the client, depending on the capabilities of the client and origin server.
To support requesting brotli from the origin, you must enable the brotli_content_encoding
compatibility flag in your Worker. Soon, this compatibility flag will be enabled by default for all Workers past an upcoming compatibility date.
One scenario where the Accept-Encoding header is useful is for passing through compressed data from a server to the client, where the Accept-Encoding allows the worker to directly receive the compressed data stream from the server without it being decompressed beforehand. As long as you do not read the body of the compressed response prior to returning it to the client and keep the Content-Encoding
header intact, it will “pass through” without being decompressed and then recompressed again. This can be helpful when using Workers in front of origin servers or when fetching compressed media assets, to ensure that the same compression used by the origin server is used in the response that your Worker returns.
In addition to a change in the content encoding, recompression is also needed when a response uses an encoding not supported by the client. As an example, when a Worker requests either brotli or gzip as the encoding but the client only supports gzip, recompression will still be needed if the server returns brotli-encoded data to the server (and will be applied automatically). Note that this behavior may also vary based on the compression rules, which can be used to configure what compression should be applied for different types of data on the server side.
- Example: use
fetch
to respond with another site - Example: Fetch HTML
- Example: Fetch JSON
- Example: cache using Fetch
- Write your Worker code in ES modules syntax for an optimized experience.