Is it possible to make an ssh connection on capacitor?

I would like to know if it is possible to make ssh connections in capacitor with a plugin.
If possible, can tests be done in the browser?
What plugin do you recommend for ionic-capacitor with a basic functional example?

You’ll need a custom plugin since SSH isn’t natively supported in Capacitor. One option is using ssh2 with a Node.js backend and calling it via an API. Running SSH directly in the browser is not easy due to security restrictions.