DEV Community

Discussion on: Make your WebApp public temporarily using ngrok 🔥

Collapse
 
benwinding profile image
Ben Winding

For an even simpler solution use the free: localhost.run/

Run app locally
./runapp --port 8080
In another terminal
ssh -R 80:localhost:8080 ssh.localhost.run

Now you can access your app globally!
myproject.localhost.run

Collapse
 
insanenaman profile image
Naman Gupta

Thanks for pointing this out. I didn't know about this but it looks great. I'll definitely look into it.