gotty/README.md

79 lines
2.9 KiB
Markdown
Raw Normal View History

2015-08-16 09:47:23 +00:00
# GoTTY - Share your terminal as a web application
2015-08-16 22:00:38 +00:00
[![wercker status](https://app.wercker.com/status/03b91f441bebeda34f80e09a9f14126f/s/master "wercker status")](https://app.wercker.com/project/bykey/03b91f441bebeda34f80e09a9f14126f)
2015-08-16 09:47:23 +00:00
GoTTY is a simple command line tool that turns your CLI tools into web applications.
![Screenshot](https://raw.githubusercontent.com/yudai/gotty/master/screenshot.gif)
# Installation
Download the latest binary file from the [Releases](https://github.com/yudai/gotty/releases) page.
2015-08-17 19:59:38 +00:00
## `go get` Installation
2015-08-16 22:50:10 +00:00
If you have a Go language environment, you can install gotty with the `go get` command.
```sh
2015-08-17 05:28:10 +00:00
$ go get github.com/yudai/gotty
2015-08-16 22:50:10 +00:00
```
2015-08-16 09:47:23 +00:00
# Usage
2015-08-17 02:30:44 +00:00
```
Usage: gotty [options] <command> [<arguments...>]
2015-08-16 09:47:23 +00:00
```
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
```
2015-08-17 02:30:44 +00:00
--addr, -a IP address to listen [$GOTTY_ADDR]
--port, -p "8080" Port number to listen [$GOTTY_PORT]
--permit-write, -w Permit clients to write to the TTY (BE CAREFUL) [$GOTTY_PERMIT_WRITE]
2015-08-16 09:47:23 +00:00
```
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.
## Sharing with Multiple Clients
Gotty starts a new process 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.
For example, you can start a new tmux session named `gotty` with `top` command by the command below.
```sh
2015-08-17 05:28:10 +00:00
$ 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 operatitons like switching the mode of the `top` command. To connect to the tmux session from your terminal, you can use following command.
2015-08-17 05:28:10 +00:00
```sh
$ 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'`"
```
2015-08-17 05:28:10 +00:00
## Playing with Docker
When you want to create a jailed environment for each client, you can use Docker containers like following:
```sh
$ gotty -w docker run -it --rm busybox
```
2015-08-16 09:47:23 +00:00
# License
The MIT License