ssh-remote-port-forward
v1.0.4
Published
SSH remote port forward
Downloads
1,770,018
Maintainers
Readme
SSH Remote Port Forward
Allows the client to tunnel back to the host.
Install
npm install --save ssh-remote-port-forward
Usage
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)