MKMonish Karunakaranincyclopes.hashnode.dev·Nov 29, 2022 · 4 min readBuild CRUD API with AWS Lambda and DynamoDBIn this post we will be building simple CRUD API to manage tasks and in the upcoming posts we will use this project as a base to explore other AWS services. But in order to follow along with this post you need to have a basic understanding of DynamoD...00
MKMonish Karunakaranincyclopes.hashnode.dev·Nov 29, 2022 · 4 min readHow to setup DynamoDB with serverless framework for dummiesIn this post you will learn how to setup a DynamoDB table with infrastructure as code using the serverless framework which will act as a base for the future posts. let's begin Project set up first checkout to your project directory and run the below...00
MKMonish Karunakaranincyclopes.hashnode.dev·Nov 29, 2022 · 5 min readDynamoDB 101This post is written considering you're a fresher to DynamoDB and it only explains the basic concepts that's required to perform CRUD operations. The language used in this post in node.js but the underlying concepts are same no matter which language...00
MKMonish Karunakaranincyclopes.hashnode.dev·Nov 29, 2022 · 4 min readIntro to Infrastructure as code (Serverless framework)If you have followed the previous posts about creating lambda functions, you would have realized that it's a pain in the ass to configure the infrastructure manually using the AWS console, you always wonder if there's an easy way of setting up your i...00
MKMonish Karunakaranincyclopes.hashnode.dev·Nov 24, 2022 · 3 min readLambda functions with DynamoDB & NodeIn this post let's use the API we previously created and create and fetch data from a database provided by AWS called DynamoDB. DynamoDB is a fully managed proprietary NoSQL database service that supports key–value and document data structures. So, t...00