Question

Would it be possible to write a basic SSH client in pure javascript using something like orbited web sockets as the transport layer? I don't see any examples of this, but it seems like it would be a nice thing to have.

Was it helpful?

Solution

You can check out Ajaxterm and rTerm, which uses it.
I really like Orbited and used it on one of my company's internal systems (with RabbitMQ). It should be possible to take the concepts from those applications and use Orbited as the transport layer, though I don't think this is the best use case for it (as the task being single-user and not channel-based etc.).

OTHER TIPS

With a proxy on the server to convert the unpack the WebSocket protocol and tunnel it into SSH, sure, it could be done.

It hasn't been done yet because WebSocket isn't really finished yet and most browsers don't have implementations. You have to fall back to Flash sockets to emulate it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top