Category Lambda
Share experience about Lambda
Use Lambda with Node.js to Insert Data Into DynamoDB
6/1/2021·3 min read
This blog show how to create AWS Lambda with Node.js and insert record into DynamoDB, also shows manully deploy Lambda as package to AWS from the your local develop environment.
How to Deploy Lambda with Node.js with Package Dependencies
5/6/2021·4 min read
AWS Lambda is serverless compute service and let you run code at AWS's managing servers on the cloud, you will only worry about your code and AWS will manage the underneath servers. This blog is trying to show how to get start with Lambda by use Node.js with package dependencies, the code will include one dependency module util, it'll will use zip to compress the index.js and node_modules folder.
How to Deploy Lambda with Node.js without Dependencies
5/3/2021·3 min read
AWS Lambda is serverless compute service and let you run code at AWS's managing servers on the cloud, you will only worry about your code and AWS will manage the underneath servers. This blog is trying to show how to get start with Lambda by use Node.js with No package dependencies.
How to Build Private REST API with Lambda and Used By EC2
2/8/2021·6 min read
This blog shows how to create a private REST API, and then will consume by the EC2 Linux Instance. It will use the AWS API Gateway to build a private REST API and use the existing VPC endpoint to communicate from EC2 to REST API. The traffic from EC2 to REST API will not go through the public internet.
How to Use API Gateway with AWS Lambda Versioning and Aliases
1/3/2021·5 min read
This blog shows how to build a simple API Gateway REST API with AWS Lambda. We'll also use AWS Lambda versioning and aliases to switch to a different version by using Node.js.