Blog Posts
Browse through all articles on cloud, data, and devops engineering.
How to use npm modules in AWS Lambda
When it comes to incorporating npm modules into your AWS Lambda functions, there are two primary approaches to consider: Direct Inclusion: This method involves directly zipping the node_modules directory along with your app.js handler file. It's a s...
Read moreUse AWS CodeCommit to mirror Azure repo using an Azure Pipeline
In this blog post, I'll guide you through seamlessly syncing your Git repositories from Azure DevOps to AWS CodeCommit using the power of an Azure DevOps pipeline. This automated setup ensures that your source repository in Azure DevOps and its repli...
Read moreBuilding an AWS AppSync Serverless Application using AWS CDK
In this blog post, we will explore how to build a serverless application using AWS AppSync and AWS Cloud Development Kit (CDK). We will create a simple note-taking application with Create and Read functionality, powered by AWS AppSync, AWS Lambda, an...
Read moreThe 12-Factor App Methodology
Introduction In today's fast-paced world, building robust, scalable, and maintainable applications is crucial for success. The 12-Factor App methodology, developed by engineers at Heroku, provides a set of best practices for building cloud-native app...
Read moreHow to Deploy Dockerized AWS Lambda Using AWS CDK
In this blog post, we'll explore a step-by-step guide on how to deploy Dockerized AWS Lambda functions using the AWS Cloud Development Kit (CDK) with TypeScript. AWS CDK, a software development framework for defining cloud infrastructure in code, has...
Read moreWhat does the AWS CDK Diff command do
Introduction The AWS Cloud Development Kit (CDK) is an open-source software development framework that simplifies the process of creating, deploying and managing AWS infrastructure. It enables developers to use familiar programming languages such as ...
Read more