node-rsync icon indicating copy to clipboard operation
node-rsync copied to clipboard

Rsync wrapper for Node.js

Results 23 node-rsync issues
Sort by recently updated
recently updated
newest added

I have a local host A connected to server B and server B is connected to server C. Now I wanted to rsync files from local host A to C,...

env: process.platform: win32 node version: v10.x.x my code ``` const workDir = path.resolve('.') console.log(chalk.red(`This platform is ${process.platform}\n`)) const stdoutHandler = function(data) { console.log(chalk.green('stdoutHandler: ')) console.log(data.toString()) console.log(chalk.green('================\n')) } const stderrHandler =...

This a fairly large rewrite of the project, mostly done by boneskull (https://github.com/boneskull/rsync) to move Rsync from an object to a more modern class based layout. However, I found the...

I enabled progress: `var rsync = new Rsync().progress()` Added stdout handler in `rsync.execute`, and all I see in output is: Thanks all..

https://huntr.dev/app/users/69 has fixed a security vulnerability (Code Injection) :hammer:. 69 has been awarded $25 for fixing the vulnerability through the huntr bug bounty program :dollar:. Think you could fix a...

Currently the child process exits with a code 127 when attempting to transfer any files that contain a "&" character. The fix is a trivial change to the file.replace regex.

This issue has been generated on-behalf of Mik317 (https://huntr.dev/app/users/Mik317) ## Vulnerability Description Affected versions execute arbitrary commands remotely inside the victim's PC. The issue occurs because user input is formatted...

I'm running into this issue and can't seem to find a solution. When setting a source or destination that has spaces in it, it causes all kinds of issues and...

Hi there, I'm trying to use a custom port for my rsync script. Here's what I use : ```js const rsyncArgs = new Rsync() .flags('avz') .set('e', `ssh -p 5000`) .set('progress')...