serverless-lambda-throw

0.0.1 • Public • Published

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
};

Readme

Keywords

none

Package Sidebar

Install

npm i serverless-lambda-throw

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • rwilinski