# is-lambda **Repository Path**: mirrors_watson/is-lambda ## Basic Information - **Project Name**: is-lambda - **Description**: Detect if your code is running on an AWS Lambda server - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # is-lambda Returns `true` if the current environment is an [AWS Lambda](https://aws.amazon.com/lambda/) server. [![Build status](https://travis-ci.org/watson/is-lambda.svg?branch=master)](https://travis-ci.org/watson/is-lambda) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard) ## Installation ``` npm install is-lambda ``` ## Usage ```js var isLambda = require('is-lambda') if (isLambda) { console.log('The code is running on a AWS Lambda') } ``` ## License MIT