By default, the `Request` type doesn't have a parsed body. This allows you to skip reading it if you

By default, the
Request
type doesn't have a parsed body. This allows you to skip reading it if you don't actually need to parse it yourself. The
await request.json()
part tells it to begin pulling the body in, and parse it as JSON
Was this page helpful?