# gulp-sftp-hdh

> Upload files via SSH

Latest version **1.0.0** (published 2017-12-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install gulp-sftp-hdh
pnpm add gulp-sftp-hdh
yarn add gulp-sftp-hdh
bun add gulp-sftp-hdh
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-12-12 |
| First published | 2017-12-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | waybi |
| Maintainers | weibing |
| Keywords | upload, sftp, gulp |

## Links

- npm: https://www.npmjs.com/package/gulp-sftp-hdh
- npm.io page: https://npm.io/package/gulp-sftp-hdh

## Dependencies (6)

- [ssh2](https://npm.io/package/ssh2.md) ~0.3.3
- [async](https://npm.io/package/async.md) ~0.9.0
- [parents](https://npm.io/package/parents.md) ~1.0.0
- [through2](https://npm.io/package/through2.md) ~0.4.2
- [gulp-util](https://npm.io/package/gulp-util.md) ~3.0.0
- [object-assign](https://npm.io/package/object-assign.md) ~0.3.1

## Recent versions

- 1.0.0 (latest) — 2017-12-12

## README

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

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


## Usage

```js
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"
		}));
});
```

---
_Source: https://npm.io/package/gulp-sftp-hdh · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
