Huge News!Announcing our $40M Series B led by Abstract Ventures.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
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc