Você pode usar a opção ssh
with -n
como,
ssh -Xn user@hostname <command> <argument>
O uso de -X
é opcional para encaminhar X11. No seu caso,
ssh -n user@hostname node ./bin/www
Exemplo: Para abrir um arquivo de texto (arquivo.txt) na máquina remota com gedit
,
ssh -Xn user@hostname gedit file.txt
Em man ssh
-n A common trick is to use this to run X11 programs on a remote machine. For example,
ssh -n shadows.cs.hut.fi emacs & will start an emacs on shadows.cs.hut.fi, and the X11 connection will be
automatically forwarded over an encrypted channel. The ssh program will be put in the background.