How to improve the Time to First Byte(TTFB) of your web app?

TTFB measures the duration from the user or client making an HTTP request to the first byte of the page being received by the client's browser. TTFB size is seen as a benchmark of a well-configured server application. Few points to consider which can help reduce the TTFB of your application. First Check your network … Continue reading How to improve the Time to First Byte(TTFB) of your web app?

Advertisement

How create a serverless website using AWS Lambda, AWS S3, AWS API Gateway and AWS DynamoDB with node.js? Full Tutorial!

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!

How to deploy your static website on AWS using AWS S3 and AWS Route 53?

This post will show how can you deploy your static web application i.e basically html-css based app on AWS. You need know about the two important AWS services like AWS S3 and AWS Route 53. Below is the structure of a basic html web page: Let us upload the above web file into AWS S3. … Continue reading How to deploy your static website on AWS using AWS S3 and AWS Route 53?

How to deploy your node.js web application with AWS Beanstalk?

This post will show you how we can quickly create a node.js web aplication based on express framework and how to deploy that application on AWS using AWS BeanStalk service. Now first you need to know what is AWS BeanStalk? Some information about AWS BeanStalk: AWS BeanStalk is the fastest and simplest way to deploy … Continue reading How to deploy your node.js web application with AWS Beanstalk?