You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Vasile Popescu 885e5f1766 Add a way to notify the sender when new receivers connect
Also try to "refresh" the terminal, when new receivers connect, so the
content is fully rendered on the receiver side.
At the moment, the "refresh" is faked with making the window smaller and
then back bigger, after a short time (there doesn't seem to be a way to
tell the app to re-draw itself. Or is there?).
6 years ago
common Add a way to notify the sender when new receivers connect 6 years ago
doc Refactor the frontend structure 6 years ago
docker Add a small docker setup to run the server 6 years ago
frontend Refactor the frontend structure 6 years ago
testing Initial commit 6 years ago
tty-sender Add a way to notify the sender when new receivers connect 6 years ago
tty-server Add a way to notify the sender when new receivers connect 6 years ago
.gitignore Refactor the frontend structure 6 years ago
Makefile Refactor the frontend structure 6 years ago
README.md Initial commit 6 years ago

README.md

TTY Share

A small tool to allow sharing a terminal command with others via Internet. Shortly, the user can start a command in the terminal and then others can watch that command via Internet in the browser. More info to come.

Run the code

  • Build the frontend
cd tty-share/frontend
npm install
npm run build
  • Run the server
cd tty-share
make run