AWS Lambda

Preset: aws-lambda (switch to this preset)

Nitro provides a built-in preset to generate output format compatible with AWS Lambda.

The output entrypoint in .output/server/index.mjs is compatible with AWS Lambda format.

It can be used programmatically or as part of a deployment.

  1. import { handler } from './.output/server'
  2. // Use programmatically
  3. const { statusCode, headers, body } = handler({ rawPath: '/' })