Skip to content

Instantly share code, notes, and snippets.

@chathurawidanage
Created April 24, 2018 09:44
Show Gist options
  • Save chathurawidanage/8877035cc0e031e44cc5ab7a1f1feaac to your computer and use it in GitHub Desktop.
Save chathurawidanage/8877035cc0e031e44cc5ab7a1f1feaac to your computer and use it in GitHub Desktop.
Proxy Lambda Invocation
try {
let lambda = require(`/tmp/${projectName}/${event.lambda}`);
lambda.handler(event.testEvent, context, callback);
} catch (e) {
console.error(e);
callback("Runtime Error Occurred", null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment