1
0
mirror of https://github.com/Luzifer/expose.git synced 2024-09-16 14:18:27 +00:00
expose is a small CLI utility to control a running ngrok 2 daemon.
Go to file
2019-07-31 14:18:45 +02:00
cmd Add CORS and logging to serve command 2019-07-31 14:18:31 +02:00
docs Initial version 2017-04-14 02:45:38 +02:00
ngrok2 Initial version 2017-04-14 02:45:38 +02:00
vendor Update dependencies 2018-10-15 21:25:55 +02:00
.gitignore Initial version 2017-04-14 02:45:38 +02:00
.repo-runner.yaml Update reporunner image 2018-10-15 21:14:59 +02:00
CONTRIBUTING.md Initial version 2017-04-14 02:45:38 +02:00
Gopkg.lock Update dependencies 2018-10-15 21:25:55 +02:00
Gopkg.toml Update dependencies 2018-10-15 21:25:55 +02:00
History.md prepare release v0.6.0 2019-07-31 14:18:45 +02:00
LICENSE Fix license file 2018-09-17 21:33:47 +02:00
main.go Initial version 2017-04-14 02:45:38 +02:00
Makefile Add github release build 2017-04-14 02:47:17 +02:00
README.md Add buttons to README 2018-09-17 21:35:03 +02:00

Go Report Card

Luzifer / expose

expose is a small CLI utility to control a running ngrok 2 daemon.

Use cases

  • Quickly open a local port to demonstrate something to someone
    # expose create 4000
    Created tunnel to address "localhost:4000" with URL https://8d35e4bf.eu.ngrok.io
    
  • Close that port again
    # expose delete 4000
    Successfully closed tunnel "expose_4000" to address "localhost:4000".
    
  • Quickly share a folder with files through HTTP
    # expose serve
    Created HTTP server for this directory with URL https://81e668af.eu.ngrok.io
    Press Ctrl+C to stop server and tunnel
    
  • List the active tunnels in a nice table
    # expose list
         NAME     | TYPE  |    ADDRESS     |          PUBLIC URL
    +-------------+-------+----------------+------------------------------+
      expose_3000 | https | localhost:3000 | https://9c8d36d6.eu.ngrok.io
    

How to set up

  • Download the latest release of ngrok 2
  • Configure ngrok (see the official documentation for that!)
    • For this to work you only need an authtoken set in ~/.ngrok2/ngrok.yml
  • Set it up to start automatically (see docs/ngrok.service for a systemd service file)
  • Download the latest release of this tool