As seen on GitHub, but accessible via IPv6 - greetings to Redmond!
Go to file
2015-08-17 07:02:51 +09:00
app Initialize repository 2015-08-16 20:52:27 +09:00
Godeps Initialize repository 2015-08-16 20:52:27 +09:00
libapps@9dc111b58c Initialize repository 2015-08-16 20:52:27 +09:00
resources Format and fix typo 2015-08-17 07:02:51 +09:00
.gitignore Initialize repository 2015-08-16 20:52:27 +09:00
.gitmodules Initialize repository 2015-08-16 20:52:27 +09:00
LICENSE Credit Wetty 2015-08-17 07:02:49 +09:00
main.go Initialize repository 2015-08-16 20:52:27 +09:00
Makefile Format and fix typo 2015-08-17 07:02:51 +09:00
README.md Initialize repository 2015-08-16 20:52:27 +09:00
screenshot.gif Initialize repository 2015-08-16 20:52:27 +09:00

GoTTY - Share your terminal as a web application

GoTTY is a simple command line tool that turns your CLI tools into web applications.

Screenshot

Installation

Download the latest binary file from the Releases page.

Usage

Usage: gotty COMMAND_NAME [COMMAND_ARGUMENTS...]

Run gotty with your prefered command as its arguments (e.g. gotty top).

By default, gotty starts a web server at port 8080. Open the URL on your web browser and you can see the running command as if it's running on your terminal.

Options

--addr, -a           IP address to listen at
--port, -p "8080"    Port number to listen at
--permit-write, -w   Permit write from client (BE CAREFUL)

By default, gotty doesn't allow clients to send any keystrokes or commands except terminal window resizing. When you want to permmit clients to write input to the PTY, add the -w option. However, accepting input from remote clients is dangerous for most commands. Make sure that only trusted clients can connect to your gotty server when activate this option. If you need interaction with the PTY, consider starting gotty with tmux or GNU Screen and run your main command on it.

License

The MIT License