Installations
npm install grunt-rsync-rabhw
Developer Guide
Typescript
No
Module System
CommonJS
Min. Node Version
>=0.8.0
NPM Version
1.2.15
Score
54.1
Supply Chain
77
Quality
72
Maintenance
25
Vulnerability
98.2
License
Releases
Unable to fetch releases
Contributors
Unable to fetch Contributors
Languages
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Developer
rabhw
Download Statistics
Total Downloads
2,044
Last Day
1
Last Week
10
Last Month
24
Last Year
173
GitHub Statistics
24 Commits
2 Watching
1 Branches
1 Contributors
Package Meta Information
Latest Version
0.1.2
Package Id
grunt-rsync-rabhw@0.1.2
Size
2.79 kB
NPM Version
1.2.15
Total Downloads
Cumulative downloads
Total Downloads
2,044
Last day
0%
1
Compared to previous day
Last week
100%
10
Compared to previous week
Last month
380%
24
Compared to previous month
Last year
66.3%
173
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Dependencies
1
Peer Dependencies
1
grunt-rsync
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.
Grunt compatability
v0.1.0
and above should be Gruntv0.4
compatiblev0.0.5
and below are Gruntv0.3
compatible
If you're upgrading to Grunt v0.4
you shouldn't need to make any changes to your existing grunt-rsync
task config, just be sure to npm install
the latest version. But be sure to place an issue if you have any problems.
Prerequisites
A reasonably modern version of rsync (>=v2.6.9
) in your PATH
.
Installation
$ npm install grunt-rsync
Usage
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 port: "1234", // Use the rsyncwrapper port option to set a non-standard ssh port if required. 13 recursive: true, 14 syncDest: true 15 }, 16 "deploy-live": { 17 src: "../dist/", 18 dest: "/var/www/site", 19 host: "user@live-host", 20 recursive: true, 21 syncDest: true 22 } 23}
Wildcards, exclude patterns, globbing etc.
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. For more information on rsync's syntax check the rsync manpages. For information about how this task's options relate to rsync's functionality check rsyncwrapper.
Testing
Basic tests are run on Vows Async BDD via this package's Gruntfile. To test grunt-rsync
clone the repo and install the devDependancies:
$ npm install --dev
Next you'll have to install the Node vows
npm package globally, and ensure you've got grunt-cli
working. Then:
$ npm test
![Empty State](/_next/static/media/empty.e5fae2e5.png)
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
Found 0/24 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
- Warn: no pull requests merged into dev branch
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
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
license file not detected
Details
- Warn: project does not have a license file
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Score
2.6
/10
Last Scanned on 2025-01-27
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