Source code: source/core/index.ts
The two functions above are exposed by the got
main interface and return a new instance of Request
.
Extends: Duplex
stream
This constructor takes the same arguments as the Got promise.
Note:
When piping to
ServerResponse
, the headers will be automatically copied.
In order to prevent this behavior you need to override the request headers in abeforeRequest
hook.
Note:
If the
body
,json
orform
option is used, this stream will be read-only.
Note:
- While
got.post('https://example.com')
resolves,got.stream.post('https://example.com')
will hang indefinitely until a body is provided.- If there's no body on purpose, remember to
stream.end()
or set the body option to an empty string.
import stream from 'node:stream';
import {pipeline as streamPipeline} from 'node:stream/promises';
import fs from 'node:fs';
import got from 'got';
// This example streams the GET response of a URL to a file.
await streamPipeline(
got.stream('https://sindresorhus.com'),
fs.createWriteStream('index.html')
);
// For POST, PUT, PATCH, and DELETE methods, `got.stream` returns a `stream.Writable`.
// This example POSTs the contents of a file to a URL.
await streamPipeline(
fs.createReadStream('index.html'),
got.stream.post('https://sindresorhus.com'),
new stream.PassThrough()
);
// In order to POST, PUT, PATCH, or DELETE without a request body, explicitly specify an empty body:
await streamPipeline(
got.stream.post('https://sindresorhus.com', { body: '' }),
new stream.PassThrough()
)
Please note that new stream.PassThrough()
is required in order to catch read errors.
If it was missing then pipeline
wouldn't catch any read errors because there would be no stream to pipe to.
In other words, it would only check errors when writing.
Tip:
- Avoid
from.pipe(to)
as it doesn't forward errors.
Type: Options
The options used to make the request.
Type: IncomingMessage
The underlying IncomingMessage
instance.
Type: URL
The current URL
object in this try.
Type: URL[]
An array of URLs of consecutive requests.
Type: number
The current retry count.
Note:
- Must be overriden when retrying.
Type: string | undefined
The destination IP address.
Type: boolean
Whether the request has been aborted or not.
Type: net.Socket | tls.Socket | undefined
The socket used for this particular request.
Type: Progress
An object representing how much data have been downloaded.
Type: Progress
An object representing how much data have been uploaded.
Note:
- When a chunk is greater than
highWaterMark
, the progress won't be emitted. The body needs to be split into chunks.
import got from 'got';
const body = Buffer.alloc(1024 * 1024); // 1MB
function* chunkify(buffer, chunkSize = 64 * 1024) {
for (let pos = 0; pos < buffer.byteLength; pos += chunkSize) {
yield buffer.subarray(pos, pos + chunkSize)
}
}
const stream = got.stream.post('https://httpbin.org/anything', {
body: chunkify(body)
});
stream.resume();
stream.on('uploadProgress', progress => {
console.log(progress);
});
Type: Timings
An object representing performance information.
To generate the timings, Got uses the http-timer
package.
Type: boolean | undefined
Whether the response has been fetched from cache.
Type: boolean
Whether the socket was used for other previous requests.
Type: PlainResponse
This is emitted when a HTTP response is received.
import {pipeline as streamPipeline} from 'node:stream/promises';
import {createWriteStream} from 'node:fs';
import got from 'got';
const readStream = got.stream('http://example.com/image.png', {throwHttpErrors: false});
const onError = error => {
// Do something with it.
};
readStream.on('response', async response => {
if (response.headers.age > 3600) {
console.log('Failure - response too old');
readStream.destroy(); // Destroy the stream to prevent hanging resources.
return;
}
// Prevent `onError` being called twice.
readStream.off('error', onError);
try {
await streamPipeline(
readStream,
createWriteStream('image.png')
);
console.log('Success');
} catch (error) {
onError(error);
}
});
readStream.once('error', onError);
Type: Progress
This is emitted on every time stream.downloadProgress
is updated.
Type: Progress
This is emitted on every time stream.uploadProgress
is updated.
To enable retrying when using streams, a retry handler must be attached.
When this event is emitted, you should reset the stream you were writing to and prepare the body again.
Note:
HTTPError
s cannot be retried ifoptions.throwHttpErrors
isfalse
. This is because stream data is saved toerror.response.body
and streams can be read only once.- For the Promise API, there is no such limitation.
Type: number
The current retry count.
Type: RequestError
The error that caused this retry.
Type: (options?: OptionsInit) => Request
import fs from 'node:fs';
import got from 'got';
let writeStream;
const fn = retryStream => {
const options = {
headers: {
foo: 'bar'
},
};
const stream = retryStream ?? got.stream('https://example.com', options);
if (writeStream) {
writeStream.destroy();
}
writeStream = fs.createWriteStream('example-com.html');
stream.pipe(writeStream);
// If you don't attach the listener, it will NOT make a retry.
// It automatically checks the listener count so it knows whether to retry or not :)
stream.once('retry', (retryCount, error, createRetryStream) => {
fn(createRetryStream()); // or: fn(createRetryStream(optionsToMerge))
});
};
fn();
Type: Options
The new options used to make the next request.
Type: IncomingMessage
The IncomingMessage
instance the redirect came from.
This are the functions used internally by Got.
Other non-documented functions are private and should not be accessible.
This function is executed automatically by Got. It marks the current stream as ready. If an error occurs before stream.flush()
is called, it's thrown immediately after stream.flush()
.
This function is called instead stream.destroy(error)
, required in order to exectue async logic, such as reading the response (e.g. when ERR_NON_2XX_3XX_RESPONSE
occurs).
Type: boolean
Whether piping is disabled or not. This property is used by the Promise API.
Source code: source/core/response.ts
Extends: IncomingMessage
Type: URL
The original request URL. It is the first argument when calling got(…)
.
Type: URL[]
The redirect URLs.
Type: Request
The underlying Got stream.
Type: string
The server's IP address.
Note:
- Not available when the response is cached.
Type: boolean
Whether the response comes from cache or not.
Type: boolean
Whether the response was successful
Note:
- A request is successful when the status code of the final request is
2xx
or3xx
.- When following redirects, a request is successful only when the status code of the final request is
2xx
.304
responses are always considered successful.- Got throws automatically when
response.ok
isfalse
andthrowHttpErrors
istrue
.
Type: number
The HTTP status code.
Type: string
The final URL after all redirects.
Type: Timings
The same as request.timings
.
Type: number
The same as request.retryCount
.
Type: Buffer
Note:
- This property is only accessible when using Promise API.
The raw response body buffer.
Type: unknown
Note:
- This property is only accessible when using Promise API.
The parsed response body.
Type: boolean
The same as request.aborted
.
Type: boolean
If true
, the response has been fully parsed.
Type: net.Socket | tls.TLSSocket
The same as request.socket
.
Type: object<string, string>
The response headers.
Type: string
The status message corresponding to the status code.