-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Serverless integration for AWS Lambda - NodeJS #2865
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
amarvasekar7700
commented
Aug 31, 2020
- Added awslambda.ts file in the integrations folder. In contains new integration for AWS Lambda for NodeJS.
- Added AWSLambda integration in index.ts file.
- Added new packages in package.json file.
Name: 'node', | ||
// global.process.version return the version of node | ||
Version: global.process.version, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Name: 'node', | |
// global.process.version return the version of node | |
Version: global.process.version, | |
name: 'node', | |
// global.process.version return the version of node | |
version: global.process.version, |
We usually never capitalize keys, or is there a specific reason doing so?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes are made in the file but not reflecting.
* @hidden | ||
*/ | ||
const setAdditionalRuntimeData = (scope: Scope): void => { | ||
scope.setContext('Runtime', { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
scope.setContext('Runtime', { | |
scope.setContext('runtime', { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes are made in the file but not reflecting.
…les. 2. Added awsLambdaPrelude.ts and setup.json files for creating development package. 3. Added fs module in package.json for unit test case.
Closed in favor of #2886 |