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

claudia-api-builder

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

claudia-api-builder - npm Package Compare versions

Comparing version 1.5.0 to 1.5.1

2

package.json
{
"name": "claudia-api-builder",
"version": "1.5.0",
"version": "1.5.1",
"description": "Simplify AWS ApiGateway handling",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -35,3 +35,3 @@ #Claudia API Builder

* Check out the [Getting Started](docs/getting_started.md) guide for a basic Hello-World style example
* Check out the [Getting Started](https://claudiajs.com/tutorials/hello-world-api-gateway.html) guide for a basic Hello-World style example
* Check out the [API Documentation](docs/api.md) for a detailed guide on handling requests, customising responses and configuring your API

@@ -38,0 +38,0 @@

# Release history
## 1.5.1, 4 August 2016
- by default, API processing stops the node VM using the [callbackWaitsForEmptyEventLoop](http://docs.aws.amazon.com/lambda/latest/dg/nodejs-prog-model-context.html) Lambda context parameter. This is to prevent runaway node.js events caused by third party libs causing the Lambda VM to become stuck after a request completes. If you really want the VM execution to continue until the event loop empties, even after your API process is done, then set `lambdaContext.callbackWaitsForEmptyEventLoop` to `true` in your request handler.
## 1.5.0, 12 July 2016

@@ -4,0 +8,0 @@

@@ -44,2 +44,3 @@ /*global module, require */

var handler, result, path;
context.callbackWaitsForEmptyEventLoop = false;
if (event && event.context && event.context.path && event.context.method) {

@@ -46,0 +47,0 @@ path = event.context.path;

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