0.0.2 • Published 2 years ago

ftpdump v0.0.2

Weekly downloads
1
License
ISC
Repository
-
Last release
2 years ago

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!
	
});
0.0.2

2 years ago

0.0.1

9 years ago