1.0.0 • Published 6 years ago

gulp-sftp-hdh v1.0.0

Weekly downloads
3
License
MIT
Repository
-
Last release
6 years ago

statement:Modification on the basis of gulp-sftp

Upload files via SSH

Useful for uploading and deploying things via sftp. Right now this plugin just uploads everything. Caching and hash comparison are two TODO items.

Install

$ npm install --save-dev gulp-sftp-hdh

Usage

var gulp = require('gulp');
var sftp = require('gulp-sftp');

gulp.task('default', function () {
	return gulp.src('src/*')
		.pipe(sftp({
			host: 'website.com',
			user: 'johndoe',
			password: '1234',
			"port": "60022",
			"parentPath": "zt@Beta_172.xx.xx.xx:22",
			"remotePath": "web/spadmin_static"
		}));
});