0.1.1 • Published 13 years ago
live-ftp-upload v0.1.1
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-uploadUsing
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