What you need to know about AWS Lambda before using it.

Lambda is a Function-as-a-Service program of AWS. It has a lot of awesome features. We deployed some of our API’s that was
written in NodeJS to Lambda. In this article, I will share my experience of migrating frm Express also I will go through
the benefits and disadvantages of Lambda. Please note that, this article is not about introduction to Lambda rather than a review on it.

Migrating from Express to Lambda

There are several ways you can migrate from Express to Lambda. The fastest way is using aws serverless express node module.
But using this method creates some difficulties to manage API Gateway tool. When using Express in Lambda, API Gateway tool
lose the ability to manage individuals routes. It redirects all requests to Express.
API Gateway tools provides a lot of benefits for managing routes including Authorization, staging, documentation, and easy
to add, delete or rename the routes by button clicks.

Read More

A Detailed Comparison of AWS EC2 and GCP Compute Engine - Part 1

AWS & GCP Icons

In this article, I will compare the features and issues offered by AWS and GCP for Virtual Machines. In this part, I will discuss machine creation and remoting features. From my experience, AWS has less productive instance management style then GCP. GCP provides ability to put SSH Public Key while creation and offers a way to retrieve passwords more efficiently when remoting. AWS keeps machines and keys separated in different regions that makes it complex to manage them.

Read More