Request headers.
HTTP method as received from the platform.
OptionalrawThe platform request when an adapter has one available.
Use this as an escape hatch for platform-specific APIs. Prefer the framework-agnostic methods below when possible.
Absolute request URL.
OptionalarrayParse the request body as an array buffer when the platform supports it.
OptionalblobParse the request body as a Blob when the platform supports it.
OptionalcloneClone the request when the platform supports replaying the body.
OptionalformParse the request body as form data when the platform supports it.
Parse the request body as JSON.
Parse the request body as text.
Framework-neutral request shape consumed by Beignet server adapters.
Platform adapters should convert their native request into this shape before passing it to
server.api(...)or a single route handler.