/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-lambda-response-str-f79b367bf2c0-lambda-response-streaming-s0428-c0000.md
Lambda response streaming (1) - hono-docs
Lambda response streaming (1) Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt lambda response str...
Lambda response streaming (1)
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#lambda-response-streaming
Summary
By changing the invocation mode of AWS Lambda, you can achieve Streaming Response. ```diff fn.addFunctionUrl({ authType: lambda.FunctionUrlAuthType.NONE,...
Content
By changing the invocation mode of AWS Lambda, you can achieve Streaming Response.
fn.addFunctionUrl({
authType: lambda.FunctionUrlAuthType.NONE,
+ invokeMode: lambda.InvokeMode.RESPONSE_STREAM,
})Typically, the implementation requires writing chunks to NodeJS.WritableStream using awslambda.streamifyResponse, but with the AWS Lambda Adaptor, you can achieve the traditional streaming response of Hono by using streamHandle instead of handle.