ABAditya Bishtinadityabisht.hashnode.dev·Jan 18 · 4 min readDNS and AWS Route53 explainedBasic flow for DNS resolution When you type a domain name like marketplace.easy-games.xyz in your browser this is what happens - The browser and OS check their local DNS cache to see if the DNS record is present. If not found, a query is sent to a ...00
ABAditya Bishtinadityabisht.hashnode.dev·Oct 21, 2025 · 4 min readNginx tutorialNginx can be used as an HTTP web server or a reverse proxy. In this blog, we’ll go through the basics of nginx and at the end, we’ll create a simple reverse proxy that can route requests to different servers based on path and load balance those reque...00
ABAditya Bishtinadityabisht.hashnode.dev·Oct 14, 2023 · 6 min readDocker compose : Making local development easierPrerequisites An image is a bundled package containing your application's code, libraries, and dependencies. When you run an image, it transforms into an active and isolated environment called a container, where your application executes. Docker H...00
ABAditya Bishtinadityabisht.hashnode.dev·Aug 21, 2023 · 4 min readAutomated Tests: Setup using Github ActionsWhy do we need Automated Testing? In large codebases, if your project is being deployed directly from the main or master branch, you do not want to push/merge code that might potentially break your project. As a maintainer, you need to make sure that...00
ABAditya Bishtinadityabisht.hashnode.dev·Jul 28, 2023 · 8 min readTesting in Nodejs with Jest and SupertestTesting is essential for the overall quality and reliability of software. Testing can help prevent bugs, errors, ensure quality and help with setting up continuous integration. Jest is a popular testing framework that can be used to write tests in Ja...00