SSH remote port forward
npm install ssh-remote-port-forward> Allows the client to tunnel back to the host.
!Node.js CI


``bash`
npm install --save ssh-remote-port-forward
`typescript
import {
createSshConnection,
SshConnection,
ConnectConfig
} from "ssh-remote-port-forward";
const connectConfig: ConnectConfig = {
host: "example",
port: "22",
};
const sshConnection: SshConnection = await createSshConnection(
connectConfig
);
await sshConnection.remoteForward("localhost", 8000)
``