Low key want to make an SSH over HTTP request thing.
Like, you open up an HTTP request and the server registers a TTY for it, then you keep the connection open and send data between the two ends.
@nilix I think ssh over websocket is actually pretty common already. :o IMO that adds way more overhead than is strictly necessary, though. I think one could potentially get a shell working with cURL in bash with plain HTTP with the approach I have in mind. :P
@mauve Related: https://github.com/capyloon/wspty
That's what I use for the local "Terminal" app in @capyloon (https://github.com/capyloon/nutria/blob/main/apps/terminal/js/main.js). This goes over websocket, and it's on my todo list to add support for ssh connections.