Readonly
This method is not recommended for parsing multipart/form-data bodies in server environments. It is recommended to use a library such as @fastify/busboy as follows:
import { Busboy } from '@fastify/busboy'import { Readable } from 'node:stream'const response = await fetch('...')const busboy = new Busboy({ headers: { 'content-type': response.headers.get('content-type') } })// handle events emitted from `busboy`Readable.fromWeb(response.body).pipe(busboy) Copy
import { Busboy } from '@fastify/busboy'import { Readable } from 'node:stream'const response = await fetch('...')const busboy = new Busboy({ headers: { 'content-type': response.headers.get('content-type') } })// handle events emitted from `busboy`Readable.fromWeb(response.body).pipe(busboy)
Deprecated
This method is not recommended for parsing multipart/form-data bodies in server environments. It is recommended to use a library such as @fastify/busboy as follows:
Example