In local development, we often use localhost to access our local development environment. However, did you know that localhost and 127.0.0.1 are not the same? In this article, we'll explore the differences between these two.

127.0.0.1 vs localhost

We have human friendly domain names accross the web to point different IP addresses, for example "google.com" points to many IP addresses and one of them is 142.250.193.174. You can write this directly in your browser to access google (try this now).
127.0.0.1 is the IP address to identify our local machine. 'localhost' is used same way as domain to give 127.0.0.1 a human readable name. And just as usual domains are changeable, you can change this one too! As it's your local machine, only "you" can change it and only "you" will see the result.

Change your local hostname for experiment

To change the hostname from localhost to anything else, you need to customize the host file on your PC. You can find the host file at the following file path:

  • Windows: C:\Windows\System32\drivers\etc\hosts
  • Mac: /etc/hosts
  • Linux: /etc/hosts

Then, change localhost to your desired hostname. For example, if you want to change it to myname, you would add the following line to your host file:

127.0.0.1    myname

After saving the changes, you can access your local development environment using the new hostname instead of localhost. To test this, run any application on your local machine and access it using the new hostname from your browser. For example, if you have a web application running on port 3000, you can access it by navigating to http://myname:3000 in your browser.

So, localhost is just a human friendly domain name for 127.0.0.1 which is changeable.