|
|
|
|
|
by tommyvan
1912 days ago
|
|
Start a webapp, it can be a react frontend, nodejs, python's flask, ror, anything, listening on port 3000 and run "ssh -R 80:localhost:3000 nokey@localhost.run" on the command line. You'll get an internet accessible URL for you or anyone else to access your locally running app. hello, my name is Tom :) I wrote localhost.run to help me quickly and easily work on webhooks and collaborate on web apps. It uses the SSH protocol which the 3 main operating systems already have clients installed for. That means no signup or even a download is necessary, you can instantly to share something running on localhost. I'm most often using this for reactjs apps which listen on port 3000 by default but you can change the port 3000 in that command line to any local port. Please try it and tell me what you think. I hope some of you find it as useful as I have over the years. |
|
How does this work internally, though? How is ssh used for tunneling