New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

serverless-lambda-throw

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serverless-lambda-throw

Throw native Errors from your Lambda functions

0.0.1
latest
npm
Version published
Maintainers
1
Created
Source

Serverless Lambda Error

serverless

Normally, throwing unhandled new Error inside AWS Lambda environment tied to API Gateway results in 500 - Internal Server Error.

This module solves that problem by wrapping your Error into API Gateway compatible response format.

Installation

npm install serverless-lambda-throw --save

Usage

const LambdaError = require('serverless-lambda-throw');

module.exports.hello = (event, context, callback) => {
  LambdaError(callback); // registers error handler

  throw new Error('Uncaught error thrown!'); // Responds with 400 and wrapped error into API Gateway compatible format
};

FAQs

Package last updated on 03 Oct 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts