This post will show you how we can create a web site using AWS serverless architecture. Architecture The architecture would look something like below: The services and technologies we will be using to build this application are: AWS Lambda AWS Lambda is a compute service that lets you run code without provisioning or managing servers. AWS … Continue reading How create a serverless website using AWS Lambda, AWS S3, AWS API Gateway and AWS DynamoDB with node.js? Full Tutorial!
Tag: post
Creating and deploying a Serverless REST API with AWS Lambda, DynamoDB and API Gateway and node.js
AWS Lambda is a compute service that lets you run code without provisioning or managing servers. Amazon DynamoDB is a fast and flexible nonrelational database service for all applications that need consistent, single-digit millisecond latency at any scale. Amazon API Gateway is a fully managed service that makes it easy for developers to create, publish, maintain, monitor, … Continue reading Creating and deploying a Serverless REST API with AWS Lambda, DynamoDB and API Gateway and node.js
How to GET and POST data from DynamoDB table using node.js and AWS Lambda(Serverless function)?
AWS Lambda is a compute service that lets you run code without provisioning or managing servers. Amazon DynamoDB is a fast and flexible nonrelational database service for all applications that need consistent, single-digit millisecond latency at any scale. Amazon API Gateway is a fully managed service that makes it easy for developers to create, publish, maintain, monitor, … Continue reading How to GET and POST data from DynamoDB table using node.js and AWS Lambda(Serverless function)?
HTTP GET and POST functions for REST APIs in Node.js
On getting the GET request from the client, the server responds, by revealing some information about itself, and metadata about the data asked by the client. The response from REST API which is in the form of URL can be obtained by implementing an http get method.