This class extends the Web Response API with additional convenience methods.

Read more: Next.js Docs: NextResponse

Type Parameters

  • Body = unknown

Hierarchy (view full)

Constructors

Properties

[INTERNALS]: {
    body?: Body;
    cookies: ResponseCookies;
    url?: NextURL;
}

Type declaration

arrayBuffer: (() => Promise<ArrayBuffer>)

Type declaration

    • (): Promise<ArrayBuffer>
    • Returns Promise<ArrayBuffer>

blob: (() => Promise<Blob>)

Type declaration

body: null | ReadableStream<any>
bodyUsed: boolean
clone: (() => Response)

Type declaration

formData: (() => Promise<FormData>)

Type declaration

    • (): Promise<FormData>
    • Returns Promise<FormData>

      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

      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

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)
headers: Headers
json: (() => Promise<unknown>)

Type declaration

    • (): Promise<unknown>
    • Returns Promise<unknown>

ok: boolean
redirected: boolean
status: number
statusText: string
text: (() => Promise<string>)

Type declaration

    • (): Promise<string>
    • Returns Promise<string>

url: string

Accessors

Methods