Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
grunt-ftp-deploy
Advanced tools
This is a grunt task for code deployment over the ftp protocol.
These days git is not only our goto code management tool but in many cases our deployment tool as well. But there are many cases where git is not really fit for deployment:
This is why a grunt task like this would be very useful.
For simplicity purposes this task avoids deleting any files and it is not trying to do any size or time stamp comparison. It simply transfers all the files (and folder structure) from your dev / build location to a location on your server.
This plugin requires Grunt ~0.4.0
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-ftp-deploy --save-dev
and load the task:
grunt.loadNpmTasks('grunt-ftp-deploy');
To use this task you will need to include the following configuration in your grunt file:
'ftp-deploy': {
build: {
auth: {
host: 'server.com',
port: 21,
authKey: 'key1'
},
src: 'path/to/source/folder',
dest: '/path/to/destination/folder',
exclusions: ['path/to/source/folder/**/.DS_Store', 'path/to/source/folder/**/Thumbs.db', 'path/to/dist/tmp']
}
}
Please note that when defining paths for sources, destinations, exclusions e.t.c they need to be defined having the root of the project as a reference point.
The parameters in our configuration are:
.ftppass
in the project folder if not providedhost
parameter will be usedmatchBase
minimatch option is enabled, so .git*
would match the path /foo/bar/.gitignore
.true
forces the output verbosity.Usernames and passwords can be stored in an optional JSON file (.ftppass
in the project folder or optionaly defined inauthPath
). The credentials file should have the following format:
{
"key1": {
"username": "username1",
"password": "password1"
},
"key2": {
"username": "username2",
"password": "password2"
}
}
This way we can save as many username / password combinations as we want and look them up by the authKey
value defined in the grunt config file where the rest of the target parameters are defined.
The task prompts for credentials that are not found in the credentials file and it prompts for all credentials if a credentials file does not exist.
IMPORTANT: make sure that the credentials file uses double quotes (which is the proper JSON syntax) instead of single quotes for the names of the keys and the string values.
This task is built by taking advantage of the great work of Sergi Mansilla and his jsftp node.js module and suited for the 0.4.x branch of grunt.
authPath
configuration option.authKey
is provided and no .ftppass
is found.grunt
0.4.2 and switched to jsftp
1.2.x.jsftp
1.1.x.FAQs
Deployment over FTP
The npm package grunt-ftp-deploy receives a total of 139 weekly downloads. As such, grunt-ftp-deploy popularity was classified as not popular.
We found that grunt-ftp-deploy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.