Writing Node.js in 2025? These New Features & Practices Are Non-NegotiableIf you’re still writing Node.js apps the “old way” (CommonJS modules, dotenv, external test libs, etc), it’s time to upgrade. Modern versions of Node.js offer several built-in capabilities that reduce dependencies, simplify workflow, and improve perf...Nov 23, 2025·4 min read·115
Welcome to the Magic: Real-Time Updates with Server-Sent Events (SSE) in Node.js + React.jsOct 19, 2025·5 min read·218
Valkey Installation on ubuntuInstall Docker for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done # Add Docker's official GPG key: sudo apt-get update sudo apt-get install ca-certificates curl sudo inst...Oct 17, 2025·3 min read·6
My Own Dns ServerHow to use ? For calculation:- dig @dns.deploylite.tech MX calculate.2+2 #feel free to change 2+2 to something else dig @dns.deploylite.tech MX calculate.2+2 +short For generating random number:- dig @dns.deploylite.tech MX generate-random.rand #us...Jan 5, 2025·2 min read·168
Create ,Attach and mount EBS volume on ec2 instanceStart ec2 instatance or launch a fresh one. 2. Run lsblk you can see the disk is attached Create Volumes for this use ebs . for this tutorial i am creatimg 3 volumes Attach the volume swith to roo run lvm command to see pjysical st...Jan 5, 2025·2 min read·37
How to Host a React Website on AWS S3 and Speed it Up with CloudFrontIn this guide, we'll explore how to host your React application on Amazon S3 and use CloudFront to speed up content delivery to users worldwide. With S3 and CloudFront, you can create a highly available, low-latency website that’s easy to set up and ...Nov 2, 2024·6 min read·18
Deploy a Node.js App on AWS Lambda with DynamoDB Using the Serverless Framework: A Step-by-Step GuideDeploying applications in a serverless environment is becoming increasingly popular for its cost-effectiveness and ease of scaling. In this guide, you’ll learn how to deploy a Node.js application on AWS Lambda using the Serverless Framework, and conn...Nov 2, 2024·11 min read·72
How to Host a React App on an EC2 Instance: A Step-by-Step GuideHosting your React app on an EC2 instance is a great way to have more control over your web application’s infrastructure. In this guide, I'll walk you through each step, from setting up the EC2 instance to deploying your app. Whether you're a beginne...Oct 28, 2024·6 min read·279