Response builder

[io/http/server/utils/Response builder]


Builds a response structure out of its components: HTTP status, headers, and body. Example:

  1. 200@1 received via status

  2. {"Content-Type": "text/plain"}@1 received via headers

  3. "OK"@1 received via body

  4. {"status": 200, "headers": {"Content-Type": "text/plain"}, "body": "OK"}@1 sent via response


Keywords: construct, build, response, http, API, text, REST

Input ports

  • body: string

    Receives the body of the response. Example: "OK"

  • status: number

    Receives a HTTP status code. Example: 200

  • headers: {string: string}

    Receives a record of HTTP headers. Example: {"Contanet-Type": "text/plain"}

Output ports

  • response:

    {"status": number, "headers": {string: string}, "body": string}

    Sends the constructed HTTP response.

Last updated