AWS S3 stands for Simple Storage Service. S3 is object storage which allows you to upload files. The max files size that can be stored is 5TB. The files can be stored in a structure called buckets. A bucket is your root resource in which you add, delete or modify objects. Your bucket name should … Continue reading AWS: Creating your first S3 Bucket!
Month: July 2018
Node.js Series: 10 things you should know about node.js!
Node.js is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code server-side. Node.js was originally written by Ryan Dahl in 2009. 10 important points about nodejs.js are as follows: 1. Open source Projects can be useful for programmers. You can learn by reading the source code and build something on top of the existing … Continue reading Node.js Series: 10 things you should know about node.js!
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)?
How to add data to DynamoDB table using 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. Let us see how we can execute our code in AWS Lambda so that it saves the data in … Continue reading How to add data to DynamoDB table using AWS Lambda(serverless) function?