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