1.0.3 • Published 9 years ago
dump-ftp v1.0.3
Dump-FTP
A simple module to download the contents of a server over an FTP connection.
Installation:
npm install dump-ftp --save
Usage:
var dFtp = require('dump-ftp');
var connection = {
host: '',
port: 21,
user: '',
password: '',
root: 'rootFolder'
};
var dump = new dFtp(connection).dump();
Release History:
- 1.0.0 Initial Release
- 1.0.1 Documentation
- 1.0.2 Documentation changes
- 1.0.3 Minor changes