Skip to content

Commit 6d9f852

Browse files
committed
adds link to loopback address
1 parent 373b73d commit 6d9f852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapters/ch06.0-http-deep-dive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ server.listen(3000, "127.0.0.1");
8282

8383
You can also use the IP address `'127.0.0.1'` instead of `'localhost'` to achieve the same result.
8484

85-
Both **`localhost`** and **`127.0.0.1`** refer to the local loopback address, which means that the server will only be accessible from the same machine it's running on. This is commonly used by developers for testing and debugging purposes.
85+
Both **`localhost`** and **`127.0.0.1`** refer to the local [loopback address](https://en.wikipedia.org/wiki/Localhost#Loopback), which means that the server will only be accessible from the same machine it's running on. This is commonly used by developers for testing and debugging purposes.
8686

8787
In fact, it's a best practice to develop and test applications locally before deploying them to a production environment, as it allows for easier troubleshooting and debugging of any issues that may arise.
8888

0 commit comments

Comments
 (0)