Last active
September 16, 2019 08:46
-
-
Save sagarpanda/be9b8f2f8dc6c3edef6464836a824a21 to your computer and use it in GitHub Desktop.
access localhost from internet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ssh -R 80:localhost:8080 ssh.localhost.run | |
| ssh -R 80:localhost:3000 serveo.net | |
| # Request multiple tunnels at once | |
| ssh -R 80:localhost:8888 -R 80:localhost:9999 serveo.net | |
| npm install -g localtunnel | |
| lt --port 8000 | |
| https://github.com/localtunnel/localtunnel | |
| https://www.pluralsight.com/guides/exposing-your-local-node-js-app-to-the-world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment