├── .gitignore ├── LICENSE ├── README.md ├── bin └── run-local-lambda.js ├── example ├── event.json ├── lambda-error.js └── lambda.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbarski/run-local-lambda/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbarski/run-local-lambda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbarski/run-local-lambda/HEAD/README.md -------------------------------------------------------------------------------- /bin/run-local-lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbarski/run-local-lambda/HEAD/bin/run-local-lambda.js -------------------------------------------------------------------------------- /example/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbarski/run-local-lambda/HEAD/example/event.json -------------------------------------------------------------------------------- /example/lambda-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbarski/run-local-lambda/HEAD/example/lambda-error.js -------------------------------------------------------------------------------- /example/lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbarski/run-local-lambda/HEAD/example/lambda.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbarski/run-local-lambda/HEAD/package.json --------------------------------------------------------------------------------