relic-request-response
Installation
SKILL.md
Relic Requests & Responses
Request object
Every handler receives a Request with these key properties:
method--Methodenum (Method.get,Method.post, etc.)url-- full original URIheaders-- type-safe header accessbody--Bodywrapper (single-read stream)pathParameters-- route parameters set by routingqueryParameters-- query string parameters
Request.headers is immutable. Request.body is mutable (middleware may replace it), but the underlying stream can only be read once.