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

GoTTY - Share your terminal as a web application

All Contributors

GitHub release MIT License

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

Original work by Iwasaki Yudai. There would be no GoTTY without him. ❀️

Screenshot

Installation

From release page

You can download the latest stable binary file from the Releases page. Note that the release marked Pre-release is built for testing purpose, which can include unstable or breaking changes. Download a release marked Latest release for a stable build.

(Files named with darwin_amd64 are for Mac OS X users)

Homebrew Installation

You can install GoTTY with Homebrew as well.

$ brew install sorenisanerd/gotty/gotty

go get Installation (Development)

If you have a Go language environment, you can install GoTTY with the go get command. However, this command builds a binary file from the latest master branch, which can include unstable or breaking changes. GoTTY requires go1.9 or later.

$ go get github.com/sorenisanerd/gotty

Usage

Usage: gotty [options]  []

Run gotty with your preferred 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 were running on your terminal.

Options

   --address value, -a value     IP address to listen (default: "0.0.0.0") [$GOTTY_ADDRESS]
   --port value, -p value        Port number to liten (default: "8080") [$GOTTY_PORT]
   --path value, -m value        Base path (default: "/") [$GOTTY_PATH]
   --permit-write, -w            Permit clients to write to the TTY (BE CAREFUL) (default: false) [$GOTTY_PERMIT_WRITE]
   --credential value, -c value  Credential for Basic Authentication (ex: user:pass, default disabled) [$GOTTY_CREDENTIAL]
   --random-url, -r              Add a random string to the URL (default: false) [$GOTTY_RANDOM_URL]
   --random-url-length value     Random URL length (default: 8) [$GOTTY_RANDOM_URL_LENGTH]
   --tls, -t                     Enable TLS/SSL (default: false) [$GOTTY_TLS]
   --tls-crt value               TLS/SSL certificate file path (default: "~/.gotty.crt") [$GOTTY_TLS_CRT]
   --tls-key value               TLS/SSL key file path (default: "~/.gotty.key") [$GOTTY_TLS_KEY]
   --tls-ca-crt value            TLS/SSL CA certificate file for client certifications (default: "~/.gotty.ca.crt") [$GOTTY_TLS_CA_CRT]
   --index value                 Custom index.html file [$GOTTY_INDEX]
   --title-format value          Title format of browser window (default: "{{ .command }}@{{ .hostname }}") [$GOTTY_TITLE_FORMAT]
   --reconnect                   Enable reconnection (default: false) [$GOTTY_RECONNECT]
   --reconnect-time value        Time to reconnect (default: 10) [$GOTTY_RECONNECT_TIME]
   --max-connection value        Maximum connection to gotty (default: 0) [$GOTTY_MAX_CONNECTION]
   --once                        Accept only one client and exit on disconnection (default: false) [$GOTTY_ONCE]
   --timeout value               Timeout seconds for waiting a client(0 to disable) (default: 0) [$GOTTY_TIMEOUT]
   --permit-arguments            Permit clients to send command line arguments in URL (e.g. http://example.com:8080/?arg=AAA&arg=BBB) (default: false) [$GOTTY_PERMIT_ARGUMENTS]
   --width value                 Static width of the screen, 0(default) means dynamically resize (default: 0) [$GOTTY_WIDTH]
   --height value                Static height of the screen, 0(default) means dynamically resize (default: 0) [$GOTTY_HEIGHT]
   --ws-origin value             A regular expression that matches origin URLs to be accepted by WebSocket. No cross origin requests are acceptable by default [$GOTTY_WS_ORIGIN]
   --term value                  Terminal name to use on the browser, one of xterm or hterm. (default: "xterm") [$GOTTY_TERM]
   --enable-webgl                Enable WebGL renderer (default: true) [$GOTTY_ENABLE_WEBGL]
   --close-signal value          Signal sent to the command process when gotty close it (default: SIGHUP) (default: 1) [$GOTTY_CLOSE_SIGNAL]
   --close-timeout value         Time in seconds to force kill process after client is disconnected (default: -1) (default: -1) [$GOTTY_CLOSE_TIMEOUT]
   --config value                Config file path (default: "~/.gotty") [$GOTTY_CONFIG]
   --help, -h                    show help (default: false)
   --version, -v                 print the version (default: false)

Config File

You can customize default options and your terminal (hterm) by providing a config file to the gotty command. GoTTY loads a profile file at ~/.gotty by default when it exists.

// Listen at port 9000 by default
port = "9000"

// Enable TSL/SSL by default
enable_tls = true

// hterm preferences
// Smaller font and a little bit bluer background color
preferences {
    font_size = 5
    background_color = "rgb(16, 16, 32)"
}

See the .gotty file in this repository for the list of configuration options.

Security Options

By default, GoTTY doesn't allow clients to send any keystrokes or commands except terminal window resizing. When you want to permit clients to write input to the TTY, add the -w option. However, accepting input from remote clients is dangerous for most commands. When you need interaction with the TTY for some reasons, consider starting GoTTY with tmux or GNU Screen and run your command on it (see "Sharing with Multiple Clients" section for detail).

To restrict client access, you can use the -c option to enable the basic authentication. With this option, clients need to input the specified username and password to connect to the GoTTY server. Note that the credentials will be transmitted between the server and clients in plain text. For more strict authentication, consider the SSL/TLS client certificate authentication described below.

The -r option is a little bit more casual way to restrict access. With this option, GoTTY generates a random URL so that only people who know the URL can get access to the server.

All traffic between the server and clients are NOT encrypted by default. When you send secret information through GoTTY, we strongly recommend you use the -t option which enables TLS/SSL on the session. By default, GoTTY loads the crt and key files placed at ~/.gotty.crt and ~/.gotty.key. You can overwrite these file paths with the --tls-crt and --tls-key options. When you need to generate a self-signed certification file, you can use the openssl command.

openssl req -x509 -nodes -days 9999 -newkey rsa:2048 -keyout ~/.gotty.key -out ~/.gotty.crt

(NOTE: For Safari uses, see how to enable self-signed certificates for WebSockets when use self-signed certificates)

For additional security, you can use the SSL/TLS client certificate authentication by providing a CA certificate file to the --tls-ca-crt option (this option requires the -t or --tls to be set). This option requires all clients to send valid client certificates that are signed by the specified certification authority.

Sharing with Multiple Clients

GoTTY starts a new process with the given command when a new client connects to the server. This means users cannot share a single terminal with others by default. However, you can use terminal multiplexers for sharing a single process with multiple clients.

Screen

After installing GNU screen, start a new session with screen -S name-for-session and connect to it with gotty in another terminal window/tab through screen -x name-for-session. All commands and activities being done in the first terminal tab/window will now be broadcasted by gotty.

Tmux

For example, you can start a new tmux session named gotty with top command by the command below.

$ gotty tmux new -A -s gotty top

This command doesn't allow clients to send keystrokes, however, you can attach the session from your local terminal and run operations like switching the mode of the top command. To connect to the tmux session from your terminal, you can use following command.

$ tmux new -A -s gotty

By using terminal multiplexers, you can have the control of your terminal and allow clients to just see your screen.

Quick Sharing on tmux

To share your current session with others by a shortcut key, you can add a line like below to your .tmux.conf.

# Start GoTTY in a new window with C-t
bind-key C-t new-window "gotty tmux attach -t `tmux display -p '#S'`"

Playing with Docker

When you want to create a jailed environment for each client, you can use Docker containers like following:

$ gotty -w docker run -it --rm busybox

Development

You can build a binary by simply running make. go1.16 is required.

To build the frontend part (JS files and other static files), you need npm.

Architecture

GoTTY uses xterm.js and hterm to run a JavaScript based terminal on web browsers. GoTTY itself provides a websocket server that simply relays output from the TTY to clients and receives input from clients and forwards it to the TTY. This hterm + websocket idea is inspired by Wetty.

Alternatives

Command line client

  • gotty-client: If you want to connect to GoTTY server from your terminal

Terminal/SSH on Web Browsers

  • Secure Shell (Chrome App): If you are a chrome user and need a "real" SSH client on your web browser, perhaps the Secure Shell app is what you want
  • Wetty: Node based web terminal (SSH/login)
  • ttyd: C port of GoTTY with CJK and IME support

Terminal Sharing

  • tmate: Forked-Tmux based Terminal-Terminal sharing
  • termshare: Terminal-Terminal sharing through a HTTP server
  • tmux: Tmux itself also supports TTY sharing through SSH)

License

The MIT License

Contributors

Thanks goes to these wonderful people (emoji key):


Iwasaki Yudai

πŸ’»

Soren L. Hansen

πŸ’»

Andrea Lusuardi

πŸ’»

Manfred Touron

πŸ’»

Stephan

πŸ’»

Quentin Perez

πŸ’»

jzl

πŸ’»

Fazal Majid

πŸ’»

Immortalin

πŸ’»

freakhill

πŸ’»

0xflotus

πŸ’»

Andy Skelton

πŸ’»

Artem Medvedev

πŸ’»

Blake Jennings

πŸ’»

Christian Jensen

πŸ’»

Christopher Wilkinson

πŸ’»

Cyrus

πŸ’»

David Horsley

πŸ’»

Jason Cooke

πŸ’»

Denis Korenevskiy

πŸ’»

Massimiliano Stucchi

πŸ’»

Mikhail f. Shiryaev

πŸ’»

Robert Bittle

πŸ’»

sebastian haas

πŸ’»

shoji

πŸ’»

Shuanglei Tao

πŸ’»

The Gitter Badger

πŸ’»

Jacob Zhou

πŸ’»

zyfdegh

πŸ’»

fredster33

πŸ’»

mattn

πŸ’»

Shinichi Goto

πŸ’»

ygit

πŸ’»

StΓ©phane

πŸ›

Pavol Rusnak

πŸ’»

Devan Lai

πŸ’»

This project follows the all-contributors specification. Contributions of any kind welcome!

Comments
  • Gotty multi users, Docker and Helm

    Gotty multi users, Docker and Helm

    Hi all, and thanks to the author for this wonderful project,

    I wanted to used Gotty for a personal project with a basic authentication for multiple users. I found another project were this functionnality was added : https://github.com/KubeOperator/webkubectl. In this project the Gotty original code was updated to support a credential file for basic authentication for multiple users. As the project also changes many others things in the Gotty original project, i have moved only the changes concerning the multiple users authentication in another repository. I also added a DockerFile and a Helm Chart to deploy it in a containerized environment. You can see those changes in this repository : https://github.com/stevelaclasse/gotty-multi-users-Docker.

    I hope it may help someone.

    (This was originaly posted in the original GitHub gotty repository : https://github.com/yudai/gotty/issues/342)

  • Log user's writes in the TTY

    Log user's writes in the TTY

    Sometimes, we want see the operations log in the terminal when enabled -w.

    Write log

    If you set --write-log option, user's writes in the TTY can be Logged. for example:

    if you run gotty like this:

    ./gotty -w --write-log --permit-arguments ./test.sh
    

    this is test.sh:

    #!/bin/bash
    
    echo "Welcome: $4"
    kubectl -n $1 exec -it $2 -c $3 -- sh
    

    visit http://127.0.0.1:8080/?arg=without-istio&arg=sleep-7b6d569576-57sjq&arg=sleep&arg=21001713 and input your commands in shell, and you will see user's writes in the log (operation logs):

    ...
    2022/11/13 10:48:12 [write-log] {"arg":["without-istio","sleep-7b6d569576-57sjq","sleep","21001713"]} lsCR
    2022/11/13 10:48:14 [write-log] {"arg":["without-istio","sleep-7b6d569576-57sjq","sleep","21001713"]} pwdCR
    ...
    

    Using the [write-log] flag, you can collect and store these logs persistently. All args are in the log, including the userID.

  • Zmodem transfers/cancellations hang terminal

    Zmodem transfers/cancellations hang terminal

    What version of GoTTY are you using (gotty --version)?

    1.4.0

    What operating system and browser are you using?

    Ubuntu 22.04, Chrome

    What did you do?

    If possible, please provide the command you ran.

    ./gotty -p 7681 -w bash

    What did you expect to see?

    | Action | Expected Behavior | | --- | --- | | rz, cancel upload (close modal) | rz exits and terminal prompt advances | | sz <filename>, click Accept | File is transferred to browser, terminal prompt advances | | sz <filename>, click Decline | sz exits and terminal prompt advances | | sz <filename>, close modal | sz exits and terminal prompt advances |

    What did you see instead?

    If possible, please provide the output of the command and your browser's console output.

    | Action | Observed Behavior | | --- | --- | | rz, cancel upload (close modal) | Prompt is stuck on rz waiting to receive.**B0100000023be50 | | sz <filename>, click Accept | File is transferred to browser, terminal prompt is stuck on **B00000000000000, JavaScript console reports errors: Uncaught PROTOCOL: Only thing after ZFIN should be β€œOO” (79,79), not: ... at zsession.js:563 | | sz <filename>, click Decline | Modal displays "Skipping..." until manually closed, JavaScript console reports errors: Uncaught PROTOCOL: Only thing after ZFIN should be β€œOO” (79,79), not: ..., sz: skipped: <filename> is written to terminal but prompt is stuck | | sz <filename>, close modal | Prompt is stuck on **B00000000000000 until it eventually times out |

  • Can't send meta to emacs in the browser

    Can't send meta to emacs in the browser

    When file a bug report (see below for feature requests)

    What version of GoTTY are you using (gotty --version)?

    gotty version v1.4.0

    What operating system and browser are you using?

    macOS Monterey 12.5 Google Chrome (Desktop) Version 103.0.5060.134 (Official Build) (x86_64) Safari (Desktop) Version 15.6 (17613.3.9.1.5) Safari (iPadOS 15.5)

    What did you do?

    I run spacemacs via gotty with gotty --port 11111 --permit-write --reconnect emacsclient --tty -a "" when I go to localhost:11111 I can successfully use emacs. Since when I press the "option" key I want instead to send a "meta" key, I have tried using this config (and restarting gotty)

    preferences {                                                                   
        alt_is_meta = true
    }
    

    or this config

    preferences {                                                                   
        alt_is_meta = true
        alt_is_what = "browser-key"
    }
    

    but nothing changes.

    What did you expect to see?

    I would expect the meta key to be sent. For example, if I press for instance Option-x, I expect emacs in the browser to recognize M-x.

    What did you see instead?

    I get the option key instead. In the example above, if I press Option-x I get the character β‰ˆ. So I can't use most of the emacs keybinding. As a workaround I can use spacemacs and switch to evil-mode, but I would like to use the default emacs keybindings.

  • Add API to get current number of WebSocket connections

    Add API to get current number of WebSocket connections

    • Background:

    I want to kill gotty main process to release resources if not one use it, so required a method to get current WebSocket connections number

    About use it definition:

    • open in browser even without any input command. Or without any operation
    • have any operations

    Signed-off-by: Chenyang Yan [email protected]

  • Colors no longer obeyed in 1.4.0

    Colors no longer obeyed in 1.4.0

    It seems that the color preferences are no longer respected in 1.4.0. I was looking through the release notes, and did not see anything to explain it.

    What version of GoTTY are you using (gotty --version)?

    Gotty 1.4.0 - bug exists Gotty 1.3.0 - bug does not exist

    What operating system and browser are you using?

    Ubuntu 20.04

    What did you do?

    Have this file in ~/.gotty

    port = 3000
    
    term = "hterm" 
    
    preferences {
      background_color = "white"
      foreground_color = "black"
      cursor_color = "blue"
    }
    

    and run gotty --once ls

    Note: This exact same config worked in all previous Gotty versions, including 1.3.0

    What did you expect to see?

    The terminal background color should be white.

    What did you see instead?

    The terminal background color was black.

Related tags
An open-source GitLab command line tool bringing GitLab's cool features to your command line
An open-source GitLab command line tool bringing GitLab's cool features to your command line

GLab is an open source GitLab CLI tool bringing GitLab to your terminal next to where you are already working with git and your code without switching

Dec 30, 2022
Simple activity indicator for your command line tools.
Simple activity indicator for your command line tools.

Simple activity indicator for your command line tools.

Oct 22, 2021
A command line tool to prompt for a value to be included in another command line.

readval is a command line tool which is designed for one specific purposeβ€”to prompt for a value to be included in another command line. readval prints

Dec 22, 2021
wy : a set of command-line tools to test your container-based platform

wy wy (Abbreviation of Would You) is a set of command-line tools to test your container-based platform. ToC: Commands Deployment Monitoring Contributi

Apr 30, 2022
git-xargs is a command-line tool (CLI) for making updates across multiple Github repositories with a single command.
git-xargs is a command-line tool (CLI) for making updates across multiple Github repositories with a single command.

Table of contents Introduction Reference Contributing Introduction Overview git-xargs is a command-line tool (CLI) for making updates across multiple

Dec 31, 2022
git-xargs is a command-line tool (CLI) for making updates across multiple GitHub repositories with a single command
git-xargs is a command-line tool (CLI) for making updates across multiple GitHub repositories with a single command

git-xargs is a command-line tool (CLI) for making updates across multiple GitHub repositories with a single command. You give git-xargs:

Feb 5, 2022
Inotify-tools is a C library and a set of command-line programs providing a simple interface to inotify.

inotify-tools This is a package of some commandline utilities relating to inotify. The general purpose of this package is to allow inotify's features

Jan 4, 2023
MyApps is a universal command line tool for managing manually installed applications.
MyApps is a universal command line tool for managing manually installed applications.

MyApps MyApps is a universal command line tool for managing manually installed applications. Disclaimer I wrote this tool over two long nights while p

Jul 15, 2022
Simple and complete API for building command line applications in Go

Simple and complete API for building command line applications in Go Module cli provides a simple, fast and complete API for building command line app

Nov 23, 2022
A simple tool which you can use to move through your directories from the command line

Fe What is Fe ? Fe is a simple tool which you can use to move through your direc

Jan 1, 2022
Basic command line example using golang grpc client tools

This is a basic command line interface that demonstrates using the golang GRPC API. The API is reused between dishy and the wifi router, however both

Jan 3, 2023
Command line tools for creating and compiling JavaScript Minecraft plugins.

@customrealms/cli CustomRealms command-line tools for setting up and compiling JavaScript Minecraft plugins. Installation Install the CLI on your comp

Aug 2, 2022
Command-line tools for the FFS module.

Command-line tools for FFS The blobd tool defines a JSON-RPC service that implements the FFS blob store interface over various underlying key-value st

Dec 14, 2022
Wordle-cli - play wordle in your command line
Wordle-cli - play wordle in your command line

Wordle CLI Play Wordle in your command line! Screenshots Download You can downlo

Oct 30, 2022
A Go library for building command line applications

gocmd A Go library for building command line applications. Features Advanced command line arguments handling Subcommand handling Short and long comman

Dec 21, 2022
Interactive prompt for command-line applications
Interactive prompt for command-line applications

promptui Interactive prompt for command-line applications. We built Promptui because we wanted to make it easy and fun to explore cloud services with

Jan 8, 2023
A command line tool for simplified docker volume command built with go

dockervol A command line tool for simplified docker volume command built with go. Features: Remove anonymous volume (beta) Remove volume by matching n

Dec 18, 2021
Mirror - Mirror is command line tool for mirroring a web page
Mirror - Mirror is command line tool for mirroring a web page

mirror mirror is command line tool for mirroring a web page. Caution Do not abus

May 29, 2022
Watch your favourite anime using the video player of your choice directly from the command line

anime-cli Watch your favourite anime using the video player of your choice direc

Feb 10, 2022