Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lambda-local

Package Overview
Dependencies
Maintainers
2
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lambda-local - npm Package Compare versions

Comparing version 1.6.2 to 1.6.3

.npmignore

5

CHANGELOG.md
# ChangeLog
## 1.6.3 (2019/07/04)
* Security updates (update dependencies that had vulnerabilities: [mocha](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md#614--2019-04-18)).
* Pick up AWS profile from env `AWS_PROFILE` or `AWS_DEFAULT_PROFILE` (thanks to @illusori)
## 1.6.2 (2019/04/30)

@@ -8,2 +12,3 @@ * Documentation changes. No API changes

* Update for Winston 3
* Refactor console output manager

@@ -10,0 +15,0 @@ ## 1.5.3 (2019/04/15)

2

lib/lambdalocal.js

@@ -52,3 +52,3 @@ 'use strict';

profilePath = opts.profilePath,
profileName = opts.profileName,
profileName = opts.profileName || process.env['AWS_PROFILE'] || process.env['AWS_DEFAULT_PROFILE'],
region = opts.region,

@@ -55,0 +55,0 @@ environment = opts.environment,

{
"name": "lambda-local",
"version": "1.6.2",
"version": "1.6.3",
"description": "Commandline tool to run Lambda functions on your local machine.",

@@ -24,5 +24,5 @@ "keywords": [

"dependencies": {
"aws-sdk": "^2.437.0",
"aws-sdk": "^2.488.0",
"commander": "^2.20.0",
"dotenv": "^7.0.0",
"dotenv": "^8.0.0",
"mute": "^2.0.6",

@@ -33,4 +33,4 @@ "winston": "^3.2.1"

"chai": "^4.2.0",
"mocha": "^6.1.3",
"sinon": "^1.17.6"
"mocha": "^6.1.4",
"sinon": "^7.3.2"
},

@@ -37,0 +37,0 @@ "scripts": {

@@ -8,3 +8,3 @@ # Lambda-local

Lambda-local lets you test Amazon Lambda functions on your local machine, by providing a simplisitc API and command-line tool.
Lambda-local lets you test Amazon Lambda functions on your local machine, by providing a simplistic API and command-line tool.

@@ -11,0 +11,0 @@ The `context` of the Lambda function is already loaded so you do not have to worry about it.

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