ftpdump

0.0.2 • Public • Published

ftpdump

A simple module to download the contents of a server over an FTP connection. Stolen from dump-ftp and improved. (I would have sent pull requests, but there was no git)

Install

npm install ftpdump --save

Usage

var ftpdump = require("ftpdump");

new ftpdump({
	host: "example.org",
	port: 21,
	user: "hacking_team",
	password: "passw0rd",
	root: "remote-folder"
}, "/path/to/local-folder", function(err){
	if (err) return console.log(err);
	
	// yay!
	
});

Package Sidebar

Install

npm i ftpdump

Weekly Downloads

1

Version

0.0.2

License

ISC

Unpacked Size

3.65 kB

Total Files

3

Last publish

Collaborators

  • yetzt