node-ftp icon indicating copy to clipboard operation
node-ftp copied to clipboard

connection timeout

Open c-y-q opened this issue 6 years ago • 0 comments

var Client = require("ftp"); var c = new Client(); c.on("ready", function() { c.list(function(err, list) { if (err) throw err; console.dir(list); c.end(); }); }); // connect to localhost:21 as anonymous c.connect({ host: "189.19", port: "300", user: "re", password: "+" }); image

c-y-q avatar Jun 28 '19 03:06 c-y-q