Gathering detailed insights and metrics for pw-grunt-rsync
Gathering detailed insights and metrics for pw-grunt-rsync
Gathering detailed insights and metrics for pw-grunt-rsync
Gathering detailed insights and metrics for pw-grunt-rsync
npm install pw-grunt-rsync
Typescript
Module System
Min. Node Version
NPM Version
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
1,217
Last Day
1
Last Week
3
Last Month
6
Last Year
99
221 Stars
54 Commits
26 Forks
6 Watching
1 Branches
5 Contributors
Minified
Minified + Gzipped
Latest Version
0.0.6
Package Id
pw-grunt-rsync@0.0.6
Size
2.51 kB
NPM Version
1.2.0
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
50%
3
Compared to previous week
Last month
50%
6
Compared to previous month
Last year
32%
99
Compared to previous year
1
5
A Grunt multitask for accessing the file copying and syncing capabilities of the rsync command line utility. Uses the rsyncwrapper npm module for the core functionality.
A reasonably modern version of rsync (>=2.6.9) in your PATH.
$ npm install grunt-rsync
Add a rsync
object to your Grunt config and grunt.loadNpmTasks("grunt-rsync")
.
All options defined in the config are passed verbatim to rsyncwrapper, so check that project's readme for more details on the possible options.
For example, the following task config defines three targets. The dist
target could be used to create a distribution of a website ready for deployment, excluding files related to Git and uncompiled SCSS. The deploy-staging
and deploy-live
targets could be used to copy the distribution to the relevant remote hosts over ssh.
1rsync: { 2 dist: { 3 src: "./", 4 dest: "../dist", 5 recursive: true, 6 exclude: [".git*","*.scss"] 7 }, 8 deploy-staging: { 9 src: "../dist/", 10 dest: "/var/www/site", 11 host: "user@staging-host", 12 recursive: true, 13 syncDest: true 14 }, 15 deploy-live: { 16 src: "../dist/", 17 dest: "/var/www/site", 18 host: "user@live-host", 19 recursive: true, 20 syncDest: true 21 } 22}
Any wildcards, exclude patterns and globbing of paths are handled by rsync itself. So importantly this task does not use Grunt's in-built path expanding and globbing at all. For more information on rsync's sytax check the rsync manpages. For information about how this task's options relate to rsync's functionality check rsyncwrapper.
Basic tests are run on Vows Async BDD via this package's Gruntfile. To test grunt-rsync clone the repo and ensure that the devDependancies are present. Additionally ensure that Grunt and Vows are installed globally, and then invoke:
$ npm test
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
Found 3/29 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-02-03
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More