# live-ftp-upload

> Upload changed files

Latest version **0.1.1** (published 2013-03-09) · 0 weekly downloads

## Install

```sh
npm install live-ftp-upload
pnpm add live-ftp-upload
yarn add live-ftp-upload
bun add live-ftp-upload
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2013-03-09 |
| First published | 2013-03-02 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | hitsthings |

## Links

- npm: https://www.npmjs.com/package/live-ftp-upload
- npm.io page: https://npm.io/package/live-ftp-upload

## Dependencies (2)

- [ftp](https://npm.io/package/ftp.md) ~0.2.9
- [async](https://npm.io/package/async.md) ~0.2.5

## Recent versions

- 0.1.1 (latest) — 2013-03-09
- 0.1.0 — 2013-03-02

## README

# Live FTP Upload

Watch a directory and upload any changed files via FTP.

Useful for developing against a remote instance.

## Installing

```
npm install live-ftp-upload
```

## Using

```
require('live-ftp-upload')({
    dir : './path/to/watch',
    remoteDir : '/where/to/upload',
    connect : {
        host : 'remote-env.example.com',
        user : 'ftp-user',
        password : 'ftp-password'
    }
});

console.log('FTP uploader is watching...');
```

Uses [node-ftp](https://github.com/mscdex/node-ftp) under the hood. The `connect` property of your options is passed verbatim to `ftpClient.connect(opts)`, so any properties [node-ftp](https://github.com/mscdex/node-ftp) accepts will work.

## Release History

- 0.1.1 - really works for me - support changing dir contents.
- 0.1.0 - works for me

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