IP Address
Why can I open the page on my computer but others cannot?
Why can I open the page on my computer but others cannot?
localhost means this very computer; a colleague using this address reaches their own machine.
Listening scope and address type are separate: if the service listens on localhost only, the LAN address fails too.
127.0.0.1: only this machine: localhost and 127.0.0.1 mean this very computer; anyone else using the address reaches their own machine.
LAN address: reachable inside one network: Addresses like 192.168.x.x and 10.x.x.x work within the same LAN; devices outside cannot reach them.
Public address: anyone can reach it: Deployed services use public addresses; a domain is just a name resolved to an IP before access.
The local service runs on localhost:3000 and my colleague cannot reach it. Tell me this machine's LAN address and confirm the dev server listens on all interfaces rather than localhost only; if public access is needed, explain where to deploy.