### Generate Raw HTTP Response Source: https://github.com/wix-incubator/raw-http-response/blob/master/README.md Use this snippet to generate a raw HTTP response buffer. Ensure you import the 'raw-http-response' package and provide a valid RawResponse object. ```typescript import buildHttpResponse from 'raw-http-response'; const buffer = buildHttpResponse({ status: 200, headers: { "Content-Type": "application/json" }, body: Buffer.from( JSON.stringify({ hello: "world" }) ) }); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.