JavaScript terminal client (or JS + PHP)

Does anyone know about a JS-based terminal client? Either something that initiates an SSH connection to the remote host, or even something that just contacts the remote PHP script to execute commands and receive output. Is there such a thing?

+5
source share
5 answers

Check Anyterm , it uses the XmlHttpRequest channel to communicate with the daemon, which uses a pseudo-terminal to communicate with the shell or another application.

+4
source

http://www.masswerk.at/termlib/ looks interesting as a base.

+2
source

Shell in a box can also be used with a small Asus EEE-PC:

http://code.google.com/p/shellinabox/

It works great for virtual machines in the cloud.

+1
source

So far, the JSDom Shell is the only thing I have found that seems relatively bareback, but practical. If there are other more substantial options, feel free to share them!

0
source

All Articles