I am combing the face of the Internet to answer a question that I thought would be simple. My goal is simple. I want to create a simple SSH web client using Node.js module (s). I found several options if I want to connect to the node server itself, but cannot find examples of connecting to the REMOTE server.
Essentially, the result I'm looking for is a workflow like this: Connect to a web server â Click on the server name in the server list â Enter the SSH session on the server I clicked on
The only thing I found is that even remotely close to what I'm looking for, guacamole . However, I do not want to use guacamole as I want this application to be OS independent. I am currently creating it on the Windows 10 platform and will submit it to Fedora when done.
I found this tutorial for creating an SSH terminal . However, all this creates (or tries to create) an SSH connection to the local system.
Other options that looked absolutely fantastic were tty.js. Alas, the bottom line is the same as in the above tutorial. The module allows you to connect only to the Node.js server, and not to remote servers.
Does anyone have information on a possible path to this goal?
source share