Getting Started
localhost.run creates internet accessable URLs for web applications running on your local computer. It does this using a technology called tunneling and works for any HTTP, HTTPS or even TLS application.
To get started run your favourite web app:
python -m http.server 8080
npx http-server -p 8080
docker run -it --rm -p 8080:80 nginx
and connect a tunnel to it:
ssh -R 80:localhost:8080 localhost.run
To connect a different port, change the second port number in the command:
ssh -R 80:localhost:1234 localhost.run