0.1.1 • Published 11 years ago

live-ftp-upload v0.1.1

Weekly downloads
9
License
-
Repository
-
Last release
11 years ago

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 under the hood. The connect property of your options is passed verbatim to ftpClient.connect(opts), so any properties node-ftp accepts will work.

Release History

  • 0.1.0 - works for me
0.1.1

11 years ago

0.1.0

11 years ago