© 2023 Hashnode
#server
Web servers are the backbone of the internet, enabling the delivery of web content to users worldwide. By processing requests, retrieving resources, and generating responses, these software applicatio…
Introduction When we browse the internet, we often come across the acronym "HTTP." But have you ever wondered what it really means? HTTP, short for Hypertext Transfer Protocol, is the foundation of co…
If you have been working as a front-end developer on a team project, you have most likely encountered a scenario where the client-side app was ready, but the server-side or APIs were still underway. A…
In this article, I will explain what is a client-server model, how to establish a communication channel between a client and a server using JavaScript, and what are the best practices to handle requests and responses. 🚀 What is a client-se…
Introduction: In the vast landscape of the internet, web servers play a crucial role in enabling the delivery of websites and web applications to users worldwide. They act as the backbone of the inter…
Make a Github repo, and push the code to the repo. Login to the server by SSH Check if git is installed or not at the server, if not sudo apt update sudo apt install git Generate an SSH key on the VPS server, To establish a …
1 When your browser makes a request to a website, the server returns a JS bundle with HTML templates, CSS stylesheets, JavaScript files, and other static assets (such as images and fonts..) 2 The JavaScript files received, are used to man…
URLs and HTTP HTTP requests are the most basic part of the web as a whole. They are used to access the resources that are hosted in the remote servers. HTTP stands for hypertext transfer protocol that…
What the heck is NGINX? NGINX is a free, open-source, high-performance web server that can also function as a reverse proxy server, load balancer, and HTTP cache. NGINX is designed to handle a large n…
This will be my first attempt to publish a small tutorial on building and provisioning a server and deploying it on the data center floor. I hope this is informative and useful to my fellow technician…