Skip to content

Instantly share code, notes, and snippets.

@ttfkam
Last active December 5, 2024 18:04
Show Gist options
  • Save ttfkam/41b5567f72f6f86405479db8c2c402b5 to your computer and use it in GitHub Desktop.
Save ttfkam/41b5567f72f6f86405479db8c2c402b5 to your computer and use it in GitHub Desktop.
Detect AWS Lambda Environment
// https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html
if (process.env.AWS_SAM_LOCAL === 'true') {
// SAM local development
} else if (!!process.env.LAMBDA_TASK_ROOT) {
// You're on AWS Lambda
} else {
// Local or elsewhere
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment