dump-ftp

Simple FTP dump

Usage no npm install needed!

<script type="module">
  import dumpFtp from 'https://cdn.skypack.dev/dump-ftp';
</script>

README

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