node-ssh
node-ssh copied to clipboard
SSH2 with Promises
Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2. Release notes Sourced from semver's releases. v5.7.2 5.7.2 (2023-07-10) Bug Fixes 2f8fd41 #585 better handling of whitespace (#585) (@joaomoreno, @lukekarrys) Changelog Sourced from semver's...
Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.5. Release notes Sourced from word-wrap's releases. 1.2.5 Changes: Reverts default value for options.indent to two spaces ' '. Full Changelog: https://github.com/jonschlinkert/word-wrap/compare/1.2.4...1.2.5 1.2.4 What's Changed...
`execCommand` provides streaming ability via `onStdout`/`onStderr` option. However, even if the option is provided, it still collects the output to own array: https://github.com/steelbrain/node-ssh/blob/6c57d8f127ab1173cee68de598ff6940575af149/src/index.ts#L394 When the output is very large it...
When using putFile method I am getting this error. 
Here's abstract code to read a file on SFTP server using node-ssh. It was working fine till I was using node 16. But the ssh.dispose statement started throwing error after...
Hello. We are uploading XML file (around 2 MB) via FTP using `putFile` method, and sometimes XML file is malformed after upload. That kind of issue can happen when using...
I am trying to make the ssh connection to enable a nix-shell and run few commands inside. Sequence is like this ssh [email protected] ENTER password cd /main nix-shell node.nix node...
I'm using openssh with windows and it looks like it doesn't behave like node-ssh/ssh2 expects and an unhandled exception is thrown. ``` events.js:292 throw er; // Unhandled 'error' event ^...
Hi I'm using node-ssh to run this command in a remote machine `nvm install node` When my code sends this command via `ssh.execCommand('nvm install node')` the response is **bash: nvm:...
When I used the execCommand method to execute the git command "git show --textconv HEAD:README.md" in order to retrieve the content of a file, I noticed that it trimmed any...