Wilco
Wilco

Reputation: 33356

JavaScript (or JS+PHP) Terminal Client

Does anyone know of a JS-based terminal client? Either something that initiates an SSH connection with a remote host or even something that simply communicates with a remote PHP script to execute commands and retrieve output. Does such a thing exist?

Upvotes: 5

Views: 11524

Answers (5)

user978923
user978923

Reputation:

http://sourceforge.net/projects/jsterminal

but you'd have to write your own commands to connect with the host

Upvotes: 2

daitangio
daitangio

Reputation: 583

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

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

It works great also for virtual machines in a cloud.

Upvotes: 1

user541213
user541213

Reputation: 21

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

Upvotes: 2

Christian C. Salvadó
Christian C. Salvadó

Reputation: 827724

Check Anyterm, it uses a XmlHttpRequest channel to communicate with a daemon that uses a pseudo-terminal to communicate with a shell or other application.

Upvotes: 4

Wilco
Wilco

Reputation: 33356

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

Upvotes: 0

Related Questions